Webix Auto Validation ?

i have created webix validation form

Here

https://snippet.webix.com/9tc8331z

choose the any country it’s validation is working into all the fields.

but no need to validate all the fields.

i want to validate particular field only

if you select each filed it can be i want to show the error ?

Thanks & Regards
J.Jayaprakash

https://snippet.webix.com/yijp03b4
to use such autovalidation you need:

  1. set validation method in the element’s config, not form’s rules. https://docs.webix.com/api__link__ui.combo_validate_config.html
  2. call this.validate() instead of this.getParentView().validate (BTW, prefer getFormView() instead of getParentView() to get the parent form)

also beware that all required elements must have name. as nameless elements will not be validated.

Thanks

intregal