Check documentation for the latest version of dhtmlxSuite onValidateError DHTMLX Docs

onValidateError

fires for each error during validation

void onValidateError(string name,string|number value,boolean result);
namestringan input name
valuestring|numberthe current value
resultbooleanthe result of validation,true/false

Example

myForm.attachEvent("onValidateError", function (name, value, result){
    //your code here
});

Back to top