restores the specified state
state | object | the state object |
Available only in PRO Edition
webix.storage.local.put("state", tree.getState());
...
var state = webix.storage.local.get("state");
if (state)
tree.setState(state);
Back to top