I need to solve the following requirement:
The users of my jqgrid would like to be able to save the current state of the jqgrid filter so that it can be reloaded later. I have looked around on the web and found people with similar requirements. The first thing I tried was to use this to fetch the filter state:
var filter = cloneObject($("#MyGrid").getGridParam("postData"));
, and this to reload it:
$("#MyGrid").setGridParam(null);
$("#MyGrid").setGridParam(filter);
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top