3

我想知道是否有某种方法可以使用 jqgrid 及其 tabletogrid 扩展来实现无限滚动分页?我知道您可以使用 jqgrid 实现常规分页,但我需要不同的工具来进行无限滚动吗?

4

3 回答 3

1

这是不久前的事了,但是您可以在http://trirand.com/blog/jqgrid/jqgrid.html的“3.4 版中的新功能”部分下找到一个示例

以及 3.7“虚拟滚动”下的较新版本

于 2012-05-23T06:55:01.710 回答
0

使用 jqgrid 选项 scroll: true 无限滚动页面。

.jqGrid({
            datatype : "local",
            data : JSONData,
            height : ($(window).height() - 250),
            width : ($(window).width() - 32),
            scroll : true, 
            rowNum:20, // the number of row's to be displayed the first time
...
..
});

检查http://www.trirand.com/jqgridwiki/doku.php?id=wiki:options 看滚动 - 选项。

于 2015-07-10T09:16:22.557 回答
0

.jqGrid({ 滚动: 1, });

通过设置选项滚动

于 2015-08-12T05:45:33.493 回答