Check documentation for the latest version of dhtmlxSuite onLiveValidationError DHTMLX Docs

onLiveValidationError

fires when validation runs and rules execution are failed

void onLiveValidationError(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("onLiveValidationError", function(id,index,value,input,rule){
    // your code here
});

Details

read more details in the article Validating Data Items

Back to top