Documentation

isNotEmpty

checks whether the text field is empty or not

void isNotEmpty();

See also

Example

rules:{ // component's name is used to apply the rule to it
        "login":webix.rules.isNotEmpty
       }

Details

There should be at least one character in the text field to pass validation.

Back to top