jqGrid分页中的行限制

时间:2019-06-22 19:51:18

标签: pagination jqgrid

我的jqGrid代码如下。显示分页网格,但是所有500条记录都显示在单个页面中。每页需要10条记录。

jQuery("#Mygrid").jqGrid({
            datatype: "local",
            height: 250,
            autowidth: true,
            page: 1,
            total:10,
            records: 15,
            viewrecords: true,
            pager: '#MyGridPager',
            colNames: [some col names],
            colModel: some col
           });

1 个答案:

答案 0 :(得分:0)

要指定必须使用的页面大小,应使用rowNum参数:rowNum: 10(请参阅here)。