enables automatic saving of size, sorting order and columns order
name | string | optional, cookie name |
cookie_param | string | additional parameters added to cookie |
Available only in PRO Edition
//minimal parameters' set
myGrid.enableAutoSaving();
//maximal parameters' set
myGrid.enableAutoSaving("some_name","expires=Fri, 31-Dec-2010 23:59:59 GMT");
If you need to save hidden columns as well, you should use the enableAutoHiddenColumnsSaving() in addition to this command.
Back to top