I'm using the method "clearGridData" of "jqGrid 3.8 " to clear all data, but not clearing the "Navigation layer".
$("#MyGrid").jqGrid("clearGridData", true);
Thoroughly clean the grid, but leaves the "Navigation layer":
update
change "paging toolbar" by "N开发者_运维技巧avigation layer"
Use $("#MyGrid").jqGrid("clearGridData", true).trigger("reloadGrid");
The rowNum
parameter is not the part of data sent to the server or filled manually. If you show the empty grid having no data the user are able to switch the value of rowNum
any time.
If you need to reset the rowNum
parameter you can use
$("#MyGrid").jqGrid('setGridParam', {rowNum:10});
together with the call $("#MyGrid").jqGrid("clearGridData", true);
精彩评论