如何使用Jquery picnet表过滤器?

时间:2011-06-13 06:39:48

标签: javascript jquery grails plugins filter

我已经在我的grails app js目录中复制了picnet表过滤器脚本文件。然后我将jquery.cookie.js picnet.jquery.tablefilter.js包含在下面的行中,以包含我的表格的过滤器:

<script type="text/javascript">
$(document).ready(function()   {                                                                
$('#logDisplayTable').tableFilter();});
</script>

在要过滤的列的表头字段中,我给出了过滤器类型,  滤波器类型= 'DDL'

但是我仍然没有过滤文本框。只有表格才能显示..我在哪里做错了?

1 个答案:

答案 0 :(得分:0)

您是否添加了theadtbody

<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>