Open
Description
I intend to use validation library just for validation logic - not for any UI related stuff.
I have my own way of displaying errors.
So I use form.isValid() to tell if there is errors and that is all I need from the library.
But I get UI changes (validation error msg) on the page and form is not submitted when I do
form.submit()
How can I disable validation msg from appearing the screen?
I do set this in the config, but still get error msg.
validateOnBlur: false
showHelpOnFocus: false
addSuggestions: false