How to programmatically page to next/prev page in jqGrid

前端 未结 2 1484
Happy的楠姐
Happy的楠姐 2021-01-19 05:47

Is there a jqGrid method that will skip to the next/prev page of rows. I was trying to programmatically click the button itself with jQuery, but didn\'t succeed yet

2条回答
  •  无人及你
    2021-01-19 06:05

    To go to page 123:

    grid = $("#grid");
    grid.setGridParam({
        page: 123
    });
    grid.trigger("reloadGrid");
    

    NB: The grid behaves oddly if you go to a page for which there is no data.

提交回复
热议问题