Validation is not working TAB Press ?

here i updated my code please visit here

when press tab button some filed are not validating ?

https://snippet.webix.com/41aq36b7

Hello,

When a text input with a pattern is initialized, so a validation rule for its formatting is generated automatically. In other words, if you use pattern so you no longer need in validate: some_rule.

A validation event can be attached to a control by the specific validateEvent property that allows attaching such event as onBlur:

elementsConfig: {
    on: {
      onBlur(){ this.validate()}
    }
  }  

And please check: it’s better to usevalidate:webix.rules.isNotEmpty (not validate: window.webix.rules.isNotEmpty )

Please check the sample: https://snippet.webix.com/3tna9p9c

Thanks,

/***
And please check: it’s better to usevalidate:webix.rules.isNotEmpty (not validate: window.webix.rules.isNotEmpty )
***/

we are developing the project into React Js using Webix
so mandatory to put “window” other wise not working

html webix.ui
React window.webix.ui

webix and $$ before adding window.webix …window.$$