vote up 2 vote down star
3

I'm using the excellent jQuery Validate Plugin to validate some forms. On one form, I need to ensure that the user fills in at least one of a group of fields. I think I've got a pretty good solution, and wanted to share it. Please suggest any improvements you can think of.

Finding no built-in way to do this, I searched and found Rebecca Murphey's custom validation method, which was very helpful.

I improved this in three ways:

  1. To let you pass in a selector for the group of fields
  2. To let you specify how many of that group must be filled for validation to pass
  3. To show all inputs in the group as passing validation as soon as one of them passes validation.

So you can say "at least X inputs that match selector Y must be filled."

The end result is a rule like this:

partnumber: {
   require_from_group: [2,".productinfo"]
  }
//The partnumber input will validate if 
//at least 2 `.productinfo` inputs are filled

For best results, put this rule AFTER any formatting rules for that field (like "must contain only numbers", etc). This way, if the user gets an error from this rule and starts filling out one of the fields, they will get immediate feedback about the formatting required without having to fill another field first.

Item #3 assumes that you're adding a class of .checked to your error messages upon successful validation. You can do this as follows, as demonstrated here.

success: function(label) {  
        label.html(" ").addClass("checked"); 
}

As in the demo linked above, I use CSS to give each span.error an X image as its background, unless it has the class .checked, in which case it gets a check mark image.

Here's my code so far:

 jQuery.validator.addMethod("require_from_group", function(value, element, options) {
   //From the options array, find out what selector matches
   //our group of inputs and how many of them should be filled.
   numberRequired = options[0];
   selector = options[1];
   var commonParent = $(element).parents('form');
   var numberFilled = 0;       
   commonParent.find(selector).each(function(){
   //Look through fields matching our selector and total up
   //how many of them have been filled
     if ($(this).val()) {
       numberFilled++;
     }
   });
   if (numberFilled >= numberRequired) {
     //For imputs matching our selector, remove error class
     //from their text
     commonParent.find(selector).removeClass('error');
     //Also look for inserted error messages and mark them
     //with class 'checked'
     var remainingErrors = commonParent.find(selector)
     .next('label.error').not('.checked');
     remainingErrors.text("").addClass('checked');
     //Tell the Validate plugin that this test passed
     return true;
   }
 //The {0} in the next line is the 0th item in the options array
 }, jQuery.format("Please fill out at least {0} of these fields."));

Questions? Comments?

flag

5 Answers

vote up 0 vote down

I'm using addClassRules() route as shown by Gerasimos. But the message (Please fill out at ...) keeps repeating per input field. Is there a way to make it appear only once per group?

Thanks for the excellent example.

link|flag
It's not because of how you're doing it. Currently this method does put the message "please fill out at least X of these" beside each input in the group. The code would have to be reworked to show it only once per group, and those inputs would have to be in a common div or something so that the user sees them as a group. I may try that in the future. If you do it first, please post the code as a reply. – Nathan Long Nov 11 at 16:57
Also - you're welcome. :) – Nathan Long Nov 11 at 16:58
If you want to try coding this, one idea would be to add another class to all the group members, which causes them to be highlighted, and show the error message only for the first group member. If you had more than one validation group on a page, you'd have to find a way to differentiate those two groups (different colors?). Another idea is to add asterisks; you could do one asterisk beside each member of the first group, two for the second, etc. – Nathan Long Nov 11 at 17:02
vote up 0 vote down

That works really well as is. But im having a little trouble with masked input: http://digitalbush.com/projects/masked-input-plugin/

It appears as though the masked input is firing after your program and making it valid even if you are just tabbing through it. Im a javascript newbie so I dont know if that is correct or not.

link|flag
Sorry, I'm not familiar with that plugin. My first thought is maybe that plugin is inserting characters into the field, and your rule says that if it's no longer empty, it must be valid. In that case, you could change my code from if ($(this).val()) to check for a particular format. If that doesn't help you, I'd recommend you start a new StackOverflow question about the problem you're having, and link to this page to explain that you're using my code with the masked input. – Nathan Long Oct 1 at 17:53
Yes I was stepping through using firebug and it picks up the mask before it is removed. phone eg: () ____-__. THe masked input does delete after you move out but not before your program marks it as clear. I Will have a fiddle with it to see if i can get it working. Also what would be a cool idea would be a check the cells after leaving to see if they all need to be re marked bad. Because currently the only cell that get marked bad is the one you are on. – unknown (google) Oct 2 at 4:47
Yes - I think that would be cool too. However, I don't know a way to do it. I asked this question: stackoverflow.com/questions/1378472/… – Nathan Long Nov 11 at 17:07
vote up 1 vote down

That's an excellent solution Nathan. Thanks a lot.

Here's a way making the above code work, in case someone runs into trouble integrating it, like I did:

Code inside the additional-methods.js file:

jQuery.validator.addMethod("require_from_group", function(value, element, options) {
...// Nathan's code without any changes
}, jQuery.format("Please fill out at least {0} of these fields."));

// "filone" is the class we will use for the input elements at this example
jQuery.validator.addClassRules("fillone", {
    require_from_group: [1,".fillone"]
});

Code inside the html file:

<input id="field1" class="fillone" type="text" value="" name="field1" />
<input id="field2" class="fillone" type="text" value="" name="field2" />
<input id="field3" class="fillone" type="text" value="" name="field3" />
<input id="field4" class="fillone" type="text" value="" name="field4" />

Don't forget to include additional-methods.js file!

link|flag
Glad it's helpful to you, and thanks for chipping in information. However, instead of doing the addClassRules method, I prefer to use an array of rules on each individual form. If you go to this page (jquery.bassistance.de/validate/demo/milk) and click "show script used on this page" you will see an example. I take it one step further: I declare an array called "rules", then separately, I use them with var validator = $('#formtovalidate').validate(rules); – Nathan Long Sep 28 at 11:42
Another thought: the 'fillone' class you show here could be problematic. What if, on the same form, you need to require at least one part number, AND at least one contact name? Your rule will allow 0 contact names as long as there's at least one part number. I think it's better to set rules like require_from_group: [1,".partnumber"] and ...[1,".contactname"] to ensure you're validating the right things. – Nathan Long Dec 8 at 17:39
I updated my example to show more clearly what I mean. – Nathan Long Dec 8 at 17:45
vote up 0 vote down

I'm having trouble to adopt your solution, could you post a link to a demo?

link|flag
Urs - I don't have a demo online right now. Have you got jQuery Validate itself working yet? This demo was the one that helped me see how to use it (click to 'show script used on this page'): jquery.bassistance.de/validate/demo/milk – Nathan Long Sep 2 at 11:15
vote up 1 vote down

Starting a variable name with $ is required in PHP, but pretty weird (IMHO) in Javascript. Also, I believe you refer to it as "$module" twice and "module" once, right? It seems that this code shouldn't work.

Also, I'm not sure if it's normal jQuery plugin syntax, but I might add comments above your addMethod call, explaining what you accomplish. Even with your text description above, it's hard to follow the code, because I'm not familiar with what fieldset, :filled, value, element, or selector refer to. Perhaps most of this is obvious to someone familiar with the Validate plugin, so use judgment about what is the right amount of explanation.

Perhaps you could break out a few vars to self-document the code; like,

var atLeastOneFilled = module.find(...).length > 0;
if (atLeastOneFilled) {
  var stillMarkedWithErrors = module.find(...).next(...).not(...);
  stillMarkedWithErrors.text("").addClass(...)

(assuming I did understand the meaning of these chunks of your code! :) )

I'm not exactly sure what "module" means, actually -- is there a more specific name you could give to this variable?

Nice code, overall!

link|flag
Thanks for the suggestions - I have clarified the variable names and broken down the code to be a bit more readable. – Nathan Long Aug 20 at 15:24

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.