validateEvent

on which event validation fires

string validateEvent;

Values

  • "key"
    validation starts on key pressing within the input
  • "blur"
    validation starts when focus is removed from the control
  • Example

    webix.ui({ view:"text", validate:"isNumber", validateEvent:"key" });

    Back to top