Below is the piece of code which we used to repopulate the filter which user has applied earlier. This is not getting called. Can you please let us know the changes.
//for showing saved filters
$grid.one("pqgridload", function (evt, ui) {
if (typeof filterObject !== 'undefined' && filterObject.length > 0) {
$("#grid_procedure").pqGrid( "filter", {
oper: 'add',
data: filterObject
});
var grid = $grid.pqGrid("getInstance").grid;
grid.refreshView();
}
});