We are trying to provide following functionality:
– User should be able to hide columns from Grid by right clicking on header and choosing headers from the menu.
– This state should be maintained even when user relaunches the browser. Currently, it stays as it is till the time we don’t close the browser.
For the above, we have written following three lines:
- myGrid.enableHeaderMenu();
- myGrid.enableAutoHiddenColumnsSaving(“Grid_GUID”);
- myGrid.loadHiddenColumnsFromCookie(“Grid_GUID”);
These lines are written after grid initialization and before grid loading. Is there something missing?
Thanks.