Check documentation for the latest version of dhtmlxSuite onValidationError DHTMLX Docs

onValidationError

fires after validation error before data sending

void onValidationError(string|number id,object details);
idstring|numberid of the item for which error occurs
detailsobjecterror details

Example

dp.attachEvent("onValidationError", function(id, details){
    //custom code here
});

Back to top