在ASP.NET中具有嵌套JTemplates的JQuery
|
是否可以使用JQuery / JTemplates / ASP.NET具有这样的嵌套UI?
或多或少的伪代码:重要的部分是td内的第二个foreach循环。
<table>
<thead style=\"font-weight: bold\">
<tr>
<td>{$P.lang[\'pupilName\']}</td>
<td>{$P.lang[\'mail\']}</td>
</tr>
</thead>
<tbody>
{#foreach $T.table as record}
<tr>
<td>{$T.record.name}</td>
<td>{$T.record.mail}</td>
<td> // thats the 3rd column containing a listbox/list with documents
{#foreach $T.table1 as doc}
<ul>
<li>excel sheet 1</li>
<li>word document 2</li>
<li>pdf document 4</li>
</ul>
{#/for}
</td>
</tr>
{#/for}
</tbody>
</table>
没有找到相关结果
已邀请:
1 个回复
玖料萄
应该是这样的
即您需要为父表中的每个记录引用一个嵌套表。