colvis と multi search を一緒に使用していますが、いくつか問題があります..
ケース:
1. [レンダリング エンジン] のチェックを外し、エンジン バージョン (たとえば、データ データ 6 または 7) に対して複数検索を使用すると、データが得られません。
2.CSSグレードのマルチ検索の場合、まったく検索しません
ここで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)];
}
});