onItemCheck

fires when you check an item in tree and treetable

void onItemCheck(id id,boolean state);
ididthe ID of the related item
statebooleandefines the checked/unchecked state of a checkbox

Example

some.attachEvent("onItemCheck", function(id, state){
    //... some code here ... 
});

Related samples

See also
Back to top