Check documentation for the latest version of dhtmlxSuite loadOpenStates DHTMLX Docs

loadOpenStates

loads open state of TreeGrid into cookie

void loadOpenStates(string name);
namestringoptional, cookie name

Available only in PRO Edition

Example

myGrid.load("grid.xml",function(){
    //minimal parameters set
    myGrid.loadOpenStates();
    //maximal parameters set
    myGrid.loadOpenStates("some_name");
});

Back to top