setState

восстанавливает состояние компонента

void setState(object state);
stateobjectобъект с данными о состоянии компонента

Example

webix.storage.local.put("state", grid.getState());
...
 
var state = webix.storage.local.get("state");
if (state)
    grid.setState(state);

Related samples

See also
Наверх
If you have not checked yet, be sure to visit site of our main product Webix ui library and page of javascript tree table product.