fires on checking a checkbox in a combo
value | string|number | option value |
state | boolean | true if checked |
myCombo.attachEvent("onCheck", function(value, state){
// your code here
});
since version 4.4, this event can't cancel "check" process by returning false.
Please, use onBeforeCheck for this purpose.