これは、テーブルを表示したいおおよその方法です
http://os6.org/upload/?di=AOYK
<table class="dataTable">
<thead>
<tr>
<th class="sortable">Sr. No.
<span class="sortIcon"></span></th>
<th class="sortable">First Name
<span class="sortIcon"></span></th>
<th class="sortable">Last Name
<span class="sortIcon"></span></th>
<th class="sortable">Email
<span class="sortIcon"></span></th>
<th class="sortable">Address
<span class="sortIcon"></span></th>
</tr>
</thead>
{{#each sideTables}}
<tr class="category">
<td colspan="5">
<div>
<span>{{tableName}}</span>
<span>{{tableRelation}}</span>
</div>
</td>
</tr>
{{#each collectionAttribute}}
<tr>
<td colspan="1"></td>
<td colspan="1"></td>
<td></td>
<td></td>
<td></td>
</tr>
{{/each}}
{{/each}}
</table>
<br>
firebug では、jquery で次のエラーが表示されます。
TypeError: m is undefined.
次のコードを削除するとソートは機能しますが、ソフトウェア要件を満たすには次のコードが必要です。
<tr class="category">
<td colspan="5">
<div>
<span>{{tableName}}</span>
<span>{{tableRelation}}</span>
</div>
</td>
</tr>