在花了几天时间尝试了我在网上找到的许多解决方案之后,我问这里。
我有表单显示一个表,其中包含的数据,当搜索按钮被单击。表有8列,其中3列,我想添加一个文本输入与列数据的过滤器应用。为了更好地理解我的需求,这里有一个显示工作列过滤器的JsFiddle。
所以,我尝试了上面的链接和Datatable示例的解决方案,没有成功,找不到我做错了什么。
这是我的代码:
<table id="EquipmentTable" class="table table-striped table-bordered bottom-buffer" width="100%">
<thead>
<tr>
<th><input type="checkbox" name="select_all" value="1" id="checkAll" class="text-center" onclick="$.fn.backboneSearch.checkAllResult()"></th>
<th>Equipement</th>
<th>Famille d'équipement</th>
<th>Gamme d'équipement</th>
<th>Etat</th>
<th>UI</th>
<th>Site de stockage</th>
<th>Salle technique</th>
<th></th>
</tr>
</thead>
<tfoot id="backboneSearchtfoot">
<tr id="filterrow">
<th></th>
<th id="textFilter1" class="textFilter"></th>
<th id="textFilter2" class="textFilter"></th>
<th id="textFilter3" class="textFilter"></th>
<th class="listFilter"></th>
<th></th>
<th></th>
<th></th>
<th></th>
</tr>
</tfoot>
</table>
// Setup - add a text input to each footer cell
$('#EquipmentTable tfoot th.textFilter').each(function (i) {
$(this).html('<input type="text" data-index="' + i + '" />');
});
equipmentTable = $('#EquipmentTable').DataTable({
aaData: result,
aoColumns: [
{ mData: 'Identifier' },
{ mData: 'Mnemo' },
{ mData: 'FamGam.Family' },
{ mData: 'FamGam.Gamme' },
{ mData: 'dataState.Libelle' },
{ mData: 'IdentifierUI' },
{ mData: 'TechnicalRoom.InterventionUnitySenderSite' },
{ mData: 'IdentifierTechnicalRoom' },
],
bDestroy: true,
bFilter: false,
bRetrieve: true,
buttons: [{
className: 'btn-warning',
columns: [1, 2, 3, 4, 5, 6],
extend: 'excel',
fieldSeparator: ';',
text: '<span class="glyphicon glyphicon-export"></span> Export'
}],
dom: 'Bfrtip',
language: { /*not useful to show*/ },
stateSave: true,
bProcessing: true
});
$(equipmentTable.table().container()).on('keyup', 'tfoot th.textFilter input', function () {
equipmentTable.column($(this).data('index'))
.search(this.value)
.draw();
});
aaData
使用的result
是我在搜索Rest方法的ajax成功上获得的json。我在那个成功方法上填充表。
所以我的问题是:我做错了什么或误解了什么?我试图将对象equipmentTable.column($(this).data('index')).search(this.value)
与示例上返回的内容进行比较,并获得等效对象。这就是为什么我几乎可以肯定问题来自draw()方法。
谢谢你的帮助。
这是工作小提琴
首先,您的搜索不工作,因为您将bFilter设置为false。然后删除这一行或将此参数设置为true:
bFilter: true,
但是还不够。用于绘制输入文本列的循环将无法工作,因为列索引从0开始。然后,如果您将第一列设置在第二列,并且在第一个输入上进行搜索,那么排序将在第0列上完成。然后我给你的数据索引加了+1:
$(equipmentTable.table().container()).on('keyup', 'tfoot tr th.textFilter input', function () {
equipmentTable.column($(this).data('index') + 1)
.search(this.value)
.draw();
});
希望能有所帮助。