我是 jQuery 新手,我需要知道是否有任何方法可以禁用对 jQuery 数据表中的一列的过滤?我的数据表有 5 列,我需要禁用最后一列的过滤。
问问题
29739 次
5 回答
21
使用bSearchable
标志。从文档:
// Using aoColumnDefs
$(document).ready( function() {
$('#example').dataTable( {
"aoColumnDefs": [
{ "bSearchable": false, "aTargets": [ 0 ] }
] } );
} );
// Using aoColumns
$(document).ready( function() {
$('#example').dataTable( {
"aoColumns": [
{ "bSearchable": false },
null,
null,
null,
null
] } );
} );
于 2013-02-14T16:56:45.977 回答
4
你也可以这样做:
$('#ProductsTable').dataTable({
"lengthMenu": [[20, 50, -1], [20, 50, "All"]],
"pageLength": 20,
"columnDefs": [
{ "orderable": false, "targets": [-1, 1] },
{ "searchable": false, "targets": [-1, 1] }
]
});
于 2016-05-02T20:31:13.680 回答
2
var mSortingString = [];
var disableSortingColumn = 4;
mSortingString.push({ "bSortable": false, "aTargets": [disableSortingColumn] });
$(document).ready(function () {
var table = $('#table').dataTable({
"paging": false,
"ordering": true,
"info": false,
"aaSorting": [],
"orderMulti": true,
"aoColumnDefs": mSortingString
});
});
我花了很长时间试图弄清楚这应该是一项简单的任务,因此对于仍在寻找的人来说,只需添加前 3 行并引用您要禁用的列,我的是第 5 列。
于 2015-04-13T15:35:07.843 回答
2
以下是如何使用Datatable ColumnDef禁用多列的全局搜索过滤。
var datatable = $('#datatable').DataTable({
"deferRender": true,
"columnDefs": [
{ targets: 0, searchable: true },
{ targets: [1,2], searchable: true },
{ targets: '_all', searchable: false }
]
});
这将启用对第 0、1 和 2 列索引的搜索,并禁用其余所有列。规则自上而下优先适用。
于 2017-01-12T13:50:24.800 回答
1
这也有效。只需将数字 4 更改为您想要的列号:
var table = $('#mytable').DataTable(
{
initComplete: function () {
this.api().columns().every(function () {
var column = this;
if (column[0][0] == 4) {
console.log(column);
$(column.footer()).html('');
}
});
},
}
);
于 2016-01-11T21:54:41.783 回答