called when the checkbox inside the tree item was checked
id | id | the id of the related item |
state | boolean | the checked/unchecked state of a checkbox |
e | Event | a native event object (absent when the threeState property is enabled) |
tree.attachEvent("onItemCheck". function(id, state, e){
webix.message("Item " + id + " was " + (state? "checked" : "unchecked"));
});
Back to top