TableSorter记录太多了

时间:2013-02-21 06:01:10

标签: asp.net-mvc-3 jquery pagination tablesorter

我已经在我的项目中实现了TableSorter。现在的问题是,在某些情况下,我需要超过千条记录。 TableSorter插件通过ajax对客户端进行分页。我希望它做服务器端分页+我想在单个页面上排序,而不是整个数据。即如果TableSorter的单页上有10条记录,则必须在该单页上进行排序(仅限10条记录)。我无法更改为另一个表插件。我该怎么办?我的数据来自模型。

1 个答案:

答案 0 :(得分:0)

对于pager ajax demo,我必须手动更改serverSideSorting选项以使其对当前表内容进行排序。也许这对你有用吗?尝试包含以下代码:

$('table').bind('pagerInitialized', function(e, c){
    // allow current content sorting; this variable is automatically
    // set to true when ajax is initialized
    this.config.serverSideSorting = false;
});