在数据表中,表格顶部有一个搜索栏,每列上都有搜索栏,是否可以删除顶部搜索栏?
我知道我可以使用{search:false}但它也会禁用每列的搜索我只是想隐藏/删除顶部搜索栏我想让其他搜索栏正常工作
这是我的js代码:
$('#table-1').dataTable({paging: false, bDeferRender: true, bProcessing: true});
var table = $('#table-1').dataTable();
$('#table-1 tfoot th').each(function (i) {
var title = $('#table-1 thead th').eq($(this).index()).text();
var serach = '<input type="text" class="coulmnSearch" placeholder="جستجوی ' + title + '" />';
$(this).html('');
$(serach).appendTo(this).keyup(function(){table.fnFilter($(this).val(),i)})
});