Webix Validation ?

I have created one webix form fileds like.

name(text),
age(number),
country(combo),
place(text),
date of birth(calendar)

this.validate(); method not working properly ?

i want each field validate(). error message is shoud not be empty.

when press next next tab button.

this.validate(); method not working properly ?

Can you provide the snippet where the issue can be checked?
validate call will trigger validation for all named inputs ( input without name attribute will be ignored )

If the result of validation is an error - validation message will be shown ( if configured )
If validation successful, there will be no special message ( though there is an event which can be handled to redefine the behavior )

i posted here.

https://forum.webix.com/discussion/32996/validation-is-not-working-tab-press

yes now working fineā€¦

Thanks