JQGRID - maintain check box selection state - page refresh / redirect / reload
H ow to maintain the checkbox selection after the page refresh / reload / redirected from some other page in JQGRID . I am working in aspx pages. I am able to maintain the checkbox selection state in paging using following code: gridComplete: function () { var currentPage = $(this).getGridParam('page').toString(); //retrieve any previously stored rows for this page and re-select them var retrieveSelectedRows = $(this).data(currentPage); if (retrieveSelectedRows) { $.each(retrieveSelectedRows, function (index, value) { $('#list').setSelection(value, false); }); } }, onPaging: function (a) { var