Is there a jqGrid method that will skip the next line / previous line. I tried to programmatically click on the button itself using jQuery, but haven't had time yet
To go to page 123:
grid = $("#grid"); grid.setGridParam({ page: 123 }); grid.trigger("reloadGrid");
NB: the grid behaves strangely if you go to a page for which there is no data.
You can use $("#next").click();to launch the next page.
$("#next").click();