Documentation

validate

checks data in the component during adding new item or editing existing ones

boolean validate();

Returns

booleanresult of validation (success or failure)

See also

Example

webix.ui({
    view:"datatable",
    ready:function(){
            this.validate();
    }
});

Details

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