2 回答
TA贡献1815条经验 获得超10个赞
我能够在帮助下解决它。我的数据表是服务器端的动态生成列,所以我需要从每个输入框中获取输入值并搜索每一列。当我了解更多时,我会更新这个答案。
这是工作代码:
table.columns().every(function () {
$('input', this.footer()).keypress(function (e) {
if (e.keyCode == 13) { //search only when Enter key is pressed to avoid wasteful calls
e.preventDefault(); //input is within <form> element which submits form when Enter key is pressed. e.preventDefault() prevents this
var header = table.table().header(); //header because I moved search boxes to header
var inputBoxes = header.getElementsByTagName('input');
$.each(data.columns, function (index) {
var inputBoxVal = inputBoxes[index].value;
table.column(index).search(inputBoxVal);
});
table.draw();
}
});
});
TA贡献2051条经验 获得超10个赞
有两种方法可以解决这个问题:
用于activeElement查看哪些元素具有焦点,并相应地进行搜索。
在您的原始事件之后设置一个计时器keyup,并在几秒钟后进行搜索:
var searchTimer;
table.columns().every( function () {
var that = this;
$( 'input', this.footer() ).on( 'keyup change clear', function () {
if ( that.search() !== this.value ) {
clearTimeout(searchTimer); // Reset timer
var value = this.value;
searchTimer = setTimeout(function() {
that.search(value).draw();
}, 3000); // Wait 3 seconds
}
});
});
添加回答
举报