checks data in the component during adding new item or editing existing ones
boolean | result of validation (success or failure) |
webix.ui({
view:"datatable",
ready:function(){
this.validate();
}
});
Form is validated according to the rules you ought to define for the necessary form fields. See the corresponding chapter of the API reference.
Back to top