Bug Tracker

Ticket #3516 (closed bug: fixed)

Opened 3 months ago

Last modified 3 months ago

[validate] problems with remote rules

Reported by: corretge Assigned to: joern
Type: bug Priority: major
Milestone: 1.3 Component: plugin
Version: 1.2.6 Keywords: Validator
Cc: Needs: Review

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

issue jQuery validator.txt (3.1 kB) - added by corretge 3 months ago.
script executed

Change History

Changed 3 months ago by corretge

script executed

Changed 3 months ago by joern

  • description changed from 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é to 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é

Changed 3 months ago by joern

  • owner set to joern

Changed 3 months ago by joern

  • status changed from new to closed
  • resolution set to fixed

Fixed in [5911].

Note: See TracTickets for help on using tickets.