Check documentation for the latest version of dhtmlxSuite saveSortingToCookie DHTMLX Docs

saveSortingToCookie

saves the sorting order to cookie

void saveSortingToCookie(string name,string cookie_param);
namestringoptional, cookie name
cookie_paramstringadditional parameters added to cookie

Available only in PRO Edition

Example

myTreeGrid.attachEvent("onAfterSorting", function(index,type,direction){
    //minimal parameters set
    myTreeGrid.saveSortingToCookie();
    //maximal parameters set
    myTreeGrid.saveSortingToCookie("some_name","expires=Fri, 31-Dec-2010 23:59:59 GMT");
});

Back to top