在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>
已邀请:
嵌套的for-each应该是可能的:请参阅说明示例的本文。 我在您的代码中看到的唯一问题是我相信这一行
{#foreach $T.table1 as doc}
应该是这样的
{#foreach $T.record.table1 as doc}
即您需要为父表中的每个记录引用一个嵌套表。

要回复问题请先登录注册