Just by the way: There is anyway a problem in this demo (/jqxgrid/saveloadstate.htm), if we enable grouping.
Please do the following:
– clear localStorage
– reload demo, click “Save State”
– then group by a column
– click “Load State” -> It should clear the group because we clicked “Save State” as there was no group” but it does not!
If we set a break point in “Load State” and observe the state object, we see in the scenario above that the state object contains the group even though it should not (it seems that group by a column will modify the saved state object…)
But if we do a state = $.clone($("#jqxgrid").jqxGrid('savestate'));
and $("#jqxgrid").jqxGrid('loadstate', $.clone(state));
to have the object not modified (if we group by a column), then, at “Load State”, a java script exception is raised from jqWidgets library…