我正在尝试在表格上添加一些下拉过滤器以及分页。我正在使用tableSorter插件即,tablesorter进行排序,tablesorter-filter或过滤小部件以过滤和tablesorter寻呼机以进行分页。
当我在filter widget example page中使用过滤器小部件时,它仅过滤当前页面的分页数据,然后分页不会更新。
当我使用此jquery-tablesorter-filter location中的tablesorter-filter时,如同一链接上的示例所述,分页工作正常,但我无法使用下拉菜单选择过滤选项。
有没有人知道任何解决方法? (此时我需要使用这些tablesorter插件,所以很遗憾尝试其他插件对我来说不是我的选择..)
答案 0 :(得分:1)
Tablesorter 2.4版现已上线。查看寻呼机插件的this demo和过滤器小部件一起工作。只需确保将寻呼机插件选项removeRows设置为false:
$("table")
.tablesorter()
.tablesorterPager({
// target the pager markup
container: $(".pager"),
// remove rows from the table to speed up the sort of large tables.
// setting this to false, only hides the non-visible rows;
// needed if you plan to add/remove rows with the pager enabled.
removeRows: false,
});