onCheck event is not called

Hi,

When the master check box in a grid is checked/unchecked, the ‘oncheck’ event for each row is not called even in version 3.0 … is this behavior intentional?
If yess, what difference does the following fix mentioned :arrow_right: http://dhtmlx.com/docs/products/dhtmlx30_whatsnew.shtml make?
Complete List of Changes in DHTMLX 3.0
dhtmlxGrid v.3.0
What’s fixed:
- master_checkbox doesn’t set wasChanged flag

Is there a way to trigger the ‘onCheck’ for each row, when the master check box is checked/unchecked … without using the ‘onChange’ event, because ‘onChange’ event is triggered too many times !!!

waiting for a reply :unamused:

If you hook up the cellEdited event, it will fire for each of the rows in the grid when the master checkbox is checked/unchecked.

mygrid.attachEvent(‘onEditCell’, function onCellEdited(stage, rId, cInd, nValue, oValue){ });