Categories | Question details Back To List | ||
Event OnMathEnd ( dhtmlxGrid_pro_v16_80512 ) Hello !!! i have problem with event OnMathEnd (using grid). It doesn´t work !! Why? my code: ... mygrid.attachEvent("onMathEnd", doOnMathEnd ); mygrid.attachEvent("onEditCell", doOnEditCell ); mygrid.setSkin("light"); ... function doOnMathEnd() { alert(" test 12345 "); } My alert (javascript) doesn´t show the message " test 12345 " Thanks Alex Answer posted by Support on Jan 07, 2009 14:47 Starting from dhtmlxgrid 1.6 math works in sync mode, which means that math value calculated in same moment of time as any value in formula was changed, so onMathEnd event has not sense anymore and was removed ( in dhtmlxgrid 1.5 and earlier math may be calculated with some delay, which was require separate event ) If you have edit some cell value, on moment of stage2 of onEditCell event all math will be already processed. |