我尝试使用jquery数据表的columnFilter附加组件,但我无法使其运行。 我已正确添加插件,因为它没有引发任何错误,但它也没有在表上创建过滤器/搜索字段。
数据表行由服务器端创建,第一列包含复选框。你可以在下面找到我的html和jquery。
可能是什么问题?
<table id="orderList">
<thead>
<tr>
<th><input type=checkbox name='allSelect' class="allSelect"></th>
<th> h1 </th>
<th> h2 </th>
<th> h3 </th>
<th> h4 </th>
<th> h5 </th>
</tr>
</thead>
</table>
var oTable = $('#orderList').dataTable(
{
"sScrollY": "350px",
"sScrollX": "100%",
"bJQueryUI": true,
"sPaginationType": "full_numbers",
"bProcessing": true,
"bServerSide": true,
"sAjaxSource": "/project/order_search_ajax/",
"aoColumnDefs": [
{ 'bSortable': false, 'aTargets': [ 0 ] }
]
}
).columnFilter();
答案 0 :(得分:1)
行动。我必须按照文档
中的说明添加页脚<table id="orderList">
<thead>
<tr>
<th><input type=checkbox name='allSelect' class="allSelect"></th>
<th> h1 </th>
<th> h2 </th>
<th> h3 </th>
<th> h4 </th>
<th> h5 </th>
</tr>
</thead>
<tfoot>
<tr>
<th>Rendering engine</th>
<th>Rendering engine</th>
<th>Browser</th>
<th>Platform(s)</th>
<th>Engine version</th>
<th>CSS grade</th>
</tr>
</tfoot>
</table>