gpt4 book ai didi

jquery - 数据表绘制()方法不适用于列过滤器

转载 作者:行者123 更新时间:2023-12-01 02:27:47 24 4
gpt4 key购买 nike

花了几天时间尝试了我在互联网上找到的许多解决方案后,我在这里提问。

我的表单在单击搜索按钮时显示包含数据的表格。该表有 8 列,我想在其中 3 列上添加一个文本输入,应用带有列数据的过滤器。为了更好地了解我的需求,有 JsFiddle showing a working column filter .

所以,我尝试了上面链接和 Datatable exemple 的解决方案没有成功,也找不到我做错了什么。

这是我的代码:

<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()方法上。

感谢您的帮助。

最佳答案

这是工作 fiddle

首先,您的搜索不起作用,因为您将 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();
});

希望有帮助。

关于jquery - 数据表绘制()方法不适用于列过滤器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39223988/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com