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é