Validation on multi-tab forms

I am having an issue with form validation on a multi-tab form. I use the
multiview:{ keepViews:true }
directive on my form and everything works like a charm except validation.

I use the validate property on my text fields, which work as expected. The issue appears when a field does NOT validate (displays error in red) then I change to another tab and calling form.validate() on the form which returns true. If I call form.validate()from within the tab with the non validated textfield it returns false.

Any clues or ideas are very welcome.

Hidden fields are not validated by default. You can force it as:

form.validate({hidden:true});

Please, check the related sample.

Oh, was not aware of this. Works great now! Thank you very much.