Check documentation for the latest version of dhtmlxSuite onCheck DHTMLX Docs

onCheck

fires after a checkbox has been checked/unchecked

void onCheck(string|number id,boolean state);
idstring|numberid of a checkbox
statebooleantrue|false, checked/unchecked

Example

myRibbon.attachEvent("onCheck", function(id, state){
    // your code here
});

Back to top