What param should I send the FormValidator so it will stop the chain of submit event handlers from firing.
As I understand the FormValidator adds a SUBMIT event handler to the form, and so am I in my code after that. I need the event handlers that come in the stack after the one of the FormValidator *NOT* to fire, if the form is not valid. How? (I event tried to add event.stop() inside the onSubmit method/event handler of the FormValidator, not working)
