Check documentation for the latest version of dhtmlxSuite onValidateSuccess DHTMLX Docs

onValidateSuccess

fires for each success during validation

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

Example

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

Back to top