Check documentation for the latest version of dhtmlxSuite onValidationCorrect DHTMLX Docs

onValidationCorrect

fires when validation runs successfully

void onValidationCorrect(string|number id,number index,mixed value,string rule);
idstring|numberthe id of a row
indexnumberthe index of a column
valuemixedthe value of a cell
rulestringthe name of a rule

Available only in PRO Edition

Example

grid.attachEvent("onValidationCorrect", function(id,index,value,rule){
    // your code here
});

Back to top