fires when a form input fails to pass validation
key | string | data key that is being validated |
obj | object | data object |
webix.ui({
view:"form",
on:{
onValidationError:function(key, obj){
var text;
if (key == "login")
text = "Login can't be empty";
if (key == "email")
text = "Invalid Email";
webix.message({ type:"error", text:text });
}
});