Aug 3rd, 2011, 2:14 PM
Hi,
I have the following JS validation rules setup -
The first rule for field named "Recruitment_Source" is a set of radio buttons. If I leave them all unselected, and leave the other required fields blank and submit the form, the browser jumps to the radio buttons as though it is about to alert that the field is required, but instead it continues to the thank you page.
If I remove the radio button group from the rules, validation works fine on all of the other text input fields. Having the validation on the radio buttons basically breaks all validation.
Seems like a bug. Any ideas?
Thanks in advance,
Ryan
I have the following JS validation rules setup -
Code:
var rules = [];
rules.push("required,Recruitment_Source,Please select a Recruitment Source.");
rules.push("required,Name_First,Please enter your first name.");
rules.push("required,Name_Last,Please enter your last name.");
rules.push("required,email,Please enter your email address.");
rules.push("valid_email,email,Please enter a valid email address.");
The first rule for field named "Recruitment_Source" is a set of radio buttons. If I leave them all unselected, and leave the other required fields blank and submit the form, the browser jumps to the radio buttons as though it is about to alert that the field is required, but instead it continues to the thank you page.
If I remove the radio button group from the rules, validation works fine on all of the other text input fields. Having the validation on the radio buttons basically breaks all validation.
Seems like a bug. Any ideas?
Thanks in advance,
Ryan