0
我遇到了問題數據表1.10通過輸入元素進行列篩選。DataTable 1.10x jQuery列篩選器通過輸入文本框服務器端
jQuery(document).ready(function() {
dt_table = $('#datatable_list').DataTable({
"dom": "<'top'i>rt<'table-scrollable't>lp",
"processing": true,
"serverSide": true,
"ajax": "ajax/list_json.php",
"pageLength": 10,
"autoWidth": false
});
$('#quickfind').on('keyup', function() { dt_table.search(this.value).draw(); });
});
正如你可以看到我使用服務器端處理與JSON輸出。總榜單填補不錯。
在表中存在與4個輸入頁腳:
<tfoot>
<tr>
<th><input type="text" id="filters_0" name="filters_0" class="form-control form-filter"></th>
<th><input type="text" id="filters_1" name="filters_1" class="form-control form-filter"></th>
<th><input type="text" id="filters_2" name="filters_2" class="form-control form-filter"></th>
<th><input type="text" id="filters_3" name="filters_3" class="form-control form-filter"></th>
</tr>
</tfoot>
我使用的標準ssp.class.php類。請使用這個簡單的列過濾項目工作4天。
我想要的很簡單。快速查找文本框非常適合搜索整個表格。但我想過濾每列。像'filters_0'是產品的ID。但這是行不通的。
請您理解我使用最新的DataTabes 1.10。