fires when validation runs successfully
id | string|number | the id of a row |
index | number | the index of a column |
value | mixed | the value of a cell |
input | object | an input object |
rule | string | the name of a rule |
Available only in PRO Edition
grid.attachEvent("onLiveValidationCorrect", function(id,index,value,input,rule){
// your code here
});
read more details in the article Validating Data Items
Back to top