Hello,
"colModel" column orders not work. I am using codes below.
saveState Code
grid.saveState();
stateKeys Code
,stateKeys : {columnBorders:1,menuIcon:1,filterModel:['on','menuIcon','gridOptions','mode','header','timeout','type']}
create Code
,create: function(){
this.loadState({refresh: false});
var state = JSON.parse(localStorage.getItem("pq-grid"+this.element[0].id));
if (state!=null) {
this.option('filterModel', state.filterModel);
this.option('menuIcon', state.menuIcon);
this.option('columnBorders', state.columnBorders);
};
}