I've got the following code to change the page of the Jqgrid.
function setPage() {
$('#editGrid').setGridParam({ page: 10 }).trigger('reloadGrid');
alert("Success");
}
I get the success message but the page wont change. Currently I run the function in the loadcomplete section of the grid.
Any help would be appreciated.