我正在同时使用 colvis 和多搜索,但它有一些问题..
案例:
1. 如果我取消选中“渲染引擎”,并使用多搜索引擎版本(例如数据数据 6 或 7),它不会给出任何数据。
2. CSS等级的multi-serach,它根本不会搜索
我在这里创建了一个 jsfiddle http://jsfiddle.net/cyVjh/
使用的脚本
//Search
$("tfoot input").keyup(function () {
/* Filter on the column (the index) of this element */
oTable.fnFilter(this.value, $("tfoot input").index(this));
});
/*
* Support functions to provide a little bit of 'user friendlyness' to the textboxes in
* the footer
*/
$("tfoot input").each(function (i) {
asInitVals[i] = this.value;
});
$("tfoot input").focus(function () {
if (this.className == "search_init") {
this.className = "";
this.value = "";
}
});
$("tfoot input").blur(function (i) {
if (this.value == "") {
this.className = "search_init";
this.value = asInitVals[$("tfoot input").index(this)];
}
});