我的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
});