我有一张表,我需要在上面应用排序。我正在使用淘汰赛和 jquery.tablesorter.js。我也尝试过自定义绑定,但没有帮助。没有淘汰赛我的代码工作正常。下面是我的桌子。
<table class="tbl" id="dash" data-bind="sortTable: true">
<thead>
<tr class="tag close">
<th>Type</th>
<th>Title</th>
</tr>
</thead>
<tbody class="scrollContent" data-bind="foreach: Course">
<tr>
<td><i class="icon"></i></td>
<td><a href="#" id="qtipselector_01" data-bind="text: Title"></a></td>
<div id="TooltipContent_01" class="hidden">
<a> Test Tool Tip</a>
</div>
</div>
</tr>
</tbody>
</table>