Hi Peter,
Thanks for the prompt reply. I will try providing such a sample.
I can see the data in the columns when i try to loop through and prit out information about each column using
for(var i =0; i< $("#jqxgrid").jqxGrid('columns').records.length; i++) {
var tmp = $("#jqxgrid").jqxGrid('columns').records[i];
alert(i+"column "+ tmp.text);
}
Regarding the case of the method names, I just typed it wrong here in the post. In the actual code they are
var state = $("#jqxgrid").jqxGrid('savestate');
$("#jqxgrid").jqxGrid('loadstate', state);
thank you,
Will.