我正在使用jQuery DataTables最新版本。我想在每個表格上使用單獨的列過濾器,因此我使用列過濾器插件,但只在頁腳中使用搜索框。我想放在標題中如何將DataTables列過濾器放在頂部
$(document).ready(function() {
var oTable=$("#example").dataTable({
"bJQueryUI": true,
"sScrollX": "100%",
"aLengthMenu": [[5, 15, 50, 100], [5, 15, 50, "l00"]],
"iDisplayLength": 10,
"sPaginationType": "full_numbers",
"sDom": '<"top"if>rt<"bottom"lp><"clear">'
}).columnFilter({"sPlaceHolder":"head :before",
"aoColumns": [{ "type": "text" }, { "type": "text" }, null, null, null, null, { "type": "text" }, null, { "type": "text" }, { "type": "text" }, { "type": "text" },
如何將它放在我的桌子上?
感謝您的回覆,但對不起我沒有得到第二種方法..可以簡要解釋.. – shan
您可以使用最簡單的方法1。 http://datatables.net/release-datatables/examples/api/multi_filter.html會告訴你更多關於方法2 – asprin
iam使用這個CSS,但它不工作.. – shan