我有一个DataTables表,它通过AJAX源获取数据。我已经准备好了桌子,甚至还有搜索工作。
现在我已经请求为每个列实现搜索字段。似乎有一个用于列过滤的DataTables插件,我试图使用它。
这是我的HTML:
<!DOCTYPE HTML>
<html>
<head>
<title>testpage</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.0/jquery-ui.min.js"></script>
<script type="text/javascript" src="http://www.company.com/content/dam/workflows/js/jquery.dataTables.min.js"></script>
<script type="text/javascript" src="http://jquery-datatables-column-filter.googlecode.com/svn/trunk/media/js/jquery.dataTables.columnFilter.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("#overview").dataTable({
aoColumnDefs:[{
aTargets: [0]
}],
bAutoWidth: false,
bLengthChange: false,
iDisplayLength: 10,
sAjaxSource: "http://server/api.jsp?someparameters"
}).columnFilter();
})
</script>
</head>
<body>
<table id="overview">
<tr>
<thead>
<th>#</th>
<th>Betrieb</th>
<th>Status</th>
<th>Anlagenummer</th>
<th>Bezeichnung</th>
</thead>
</tr>
</table>
</body>
</html>
如您所见,我只附加了columnFilter()方法。它甚至不会在控制台中抛出错误,但表格看起来就像以前一样(没有其他输入框来搜索列)。
我做错了吗?是否有可能由于源代码AJAX?
答案 0 :(得分:2)
我认为您需要在html表中定义页脚部分。看看this example
该表应该看起来像
<table>
<thead>
<tr>...</tr>
</thead>
<tfoot>
<tr>...</tr>
</tfoot>
</table>