checks the checkbox it the tree item
id | string | the id of an item to check |
tree = webix.ui({
view:"tree",
template:"{common.icon()} {common.folder()} {common.checkbox()} #value#",
...
});
tree.checkItem('node1'); //'node1' is the item id
The method checks/unchecks the checkbox by turn.