Check documentation for the latest version of dhtmlxSuite onLiveValidationCorrect DHTMLX Docs

onLiveValidationCorrect

fires when validation runs successfully

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

Available only in PRO Edition

Example

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

Details

read more details in the article Validating Data Items

Back to top