Wrong documentation "onLiveValidationError"

Hello

On the following site you explain “onValidationError” but not “onLiveValidationError”:http://docs.dhtmlx.com/doku.php?id=dhtmlxgrid:event_onlivevalidationerror

I tried the following but happens nothing:

Grid[2].attachEvent("onLiveValidationError", function(rId,cInd,Value){ alert(cInd); });

Can you please help me with this?

Thank you

Best regards

Just in case … Live-Validation works but i need to react if Live-Validation goes wrong …

Hmm

If i use “onValidationError” works but alert fires always 2 times ??!!

Grid[2].attachEvent("onValidationError", function(id, ind, value) { alert(value); return true; });

Works for me …