DataTables jQueryのテーブルプラグインを使用していますが、グローバル入力検索ボックスが選択ボックスになるのに問題があります。
sDOM オプションlrtip
を使用すると、入力のフィルタリングは表示されませんが、選択ボックスを表示し、選択ボックスの変更に基づいてデータテーブルをフィルタリングできますか?
JS:
$(document).ready(function() {
var table = $('#table_page').DataTable( {
paging: true,
ordering: false,
info: true,
searching: true,
sDom: "lrtip" // default is lfrtip, where the f is the filter
});
});
HTML:
<table id="table_page" class="display cell-border" width="100%">
<thead>
<tr>
<th>Column 1</th>
<th>Column 2</th>
</tr>
</thead>
</table>