各列でフィルタリングするためにオートコンプリートhttp://jqueryui.com/autocomplete/を実装したい
データテーブルjqueryプラグインで。
たとえば、データテーブル検索で ED を使用して埋め込みデバイスを検索したい場合、それは私にはできません...だから、オートコンプリートを表示し、ユーザーがリストから選択したときにデータテーブルにフィルターをかけたいとします。
var oTable = $('#listings_row').dataTable( );
$("thead input").keyup( function (
oTable.fnFilter( this.value, parseInt($(this).attr('id')) );
} );
$("thead input").each( function (i) {
asInitVals[i] = this.value;
} );
$("thead input").focus( function () {
if ( this.className == "search_init" )
{
this.className = "";
this.value = "";
}
} );
$("thead input").blur( function (i) {
if ( this.value == "" )
{
this.className = "search_init";
this.value = asInitVals[$("#listings_row thead input").index(this)];
}
} );
どうすればできますか?