extjs4 - How to force extjs grid to save state -
if user changes column size, grid statemanager saves state of grid. if provide reset button , use grid.reconfigure() state not saved.
how force grid issue state save reconfigure?
you can use grid.initstate() after reconfigure. below.
grid.reconfigure(store, columns); grid.initstate();
eventhough initstate() can not find on ext js documentation works ver 4.2
hope helps
Comments
Post a Comment