Can form validation be done dynamically?

Example code snippet :

https://snippet.webix.com/iw00fgl5

and Can I show an alert when the validate returns false?

to validate dynamically try to validate explicitly in form’s onChange handler.
to show messages use onValidationError handler.
check this

@integral
Perfect! That’s exactly what I wanted. Thank you.