Ticket #3516 (closed bug: fixed)
[validate] problems with remote rules
| Reported by: | corretge | Owned by: | joern |
|---|---|---|---|
| Priority: | major | Milestone: | 1.3 |
| Component: | plugin | Version: | 1.2.6 |
| Keywords: | Validator | Cc: | |
| Blocking: | Blocked by: |
Description (last modified by joern) (diff)
At first time congratulations for your great job.
I use jQuery Validator plugin from bassistance.de and I have a problem with remote rules.
I need to show all errors in a tabbed form in a MsgBox when the user press the submit button.
Surfing the web I try some like this:
$('#bpwcForm').bind('invalid-form.validate', function(e, validator)
{
var errors = validator.numberOfInvalids();
alert('ERR ' + errors);
// more code to show message and field and tab positioning.
});
If the value of the field have an error and I never focus the field, the submit is cancel·led but the invalid-form.validate function is not called.
Today I have another issue with a hidden field that contain all the form values to validate with a remote rule: the first time that I submit the form with an error, the MsgBox appear twice times, but the second time, don't appear the MsgBox.
Excuse me for my bad english.
Thanks for all.
Kind Regards Àlex Corretgé
Attachments
Change History
Changed 5 years ago by corretge
-
attachment
issue jQuery validator.txt
added
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.

script executed