fires immediately after an item in the tree has been checked/unchecked
| id | string|number | id of the item that was checked/unchecked |
| state | boolean | current state of the checkbox (1 - item is checked, 0 - item is unchecked) |
myTree.attachEvent("onCheck", function(id, state){
// your code here
});
Back to top