我已经在我的grails app js目录中复制了picnet表过滤器脚本文件。然后我将jquery.cookie.js picnet.jquery.tablefilter.js
包含在下面的行中,以包含我的表格的过滤器:
<script type="text/javascript">
$(document).ready(function() {
$('#logDisplayTable').tableFilter();});
</script>
在要过滤的列的表头字段中,我给出了过滤器类型, 滤波器类型= 'DDL'
但是我仍然没有过滤文本框。只有表格才能显示..我在哪里做错了?
答案 0 :(得分:0)
您是否添加了thead
和tbody
?
<table>
<thead>//this is important
<th>Your Header1</th>
<th>Your Header2</th>
</thead>
<tbody>//and this
<tr><td>value1</td></tr>
<tr><td>value2</td></tr>
</tbody>
</table>