Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When using the newer browsers that support HTML5 (FireFox 4 for example);
and a form field has the attribute required='required';
and the form field is empty/blank;
and the submit button is clicked;
the browsers detects that the "required" field is empty and does not submit the form;
instead browser shows a hint asking the user to type text into the field.

Now, instead of a single text field, I have a group of checkboxes, out of which at least one should be checked/selected by the user.

How can I use the HTML5 required attribute on this group of checkboxes? (Since only one of the checkboxes needs to be checked, I can't put the required attribute on each and every checkbox)

ps. I am using simple_form, if that matters.


UPDATE

Could the HTML 5 multiple attribute be helpful here? Has anyone use it before for doing something similar to my question?

UPDATE

It appears that this feature is not supported by the HTML5 spec: ISSUE-111: What does input.@required mean for @type = checkbox?

(Issue status: Issue has been marked closed without prejudice.) And here is the explanation.

share|improve this question
3  
This is a great question, and applies to any form input that is an array (including text inputs) where you want to have at least one item with a value or checked (but not any specific one). Demo I think there may not be a way to do this, but I hope there is. (BTW it doesn't matter what language or framework or library, it's strictly HTML5) – Wesley Murch Jun 2 '11 at 20:10
Thanks for adding that JSFiddle demo. Hopefully there is some HTML5-way to do this, otherwise will probably have to roll up some solution using JQuery and a hidden field or something. – Zabba Jun 2 '11 at 20:53
If you want to fall back to javascript (and you're using jQuery), no need to "roll up" anything, use the highly established validation plugin: bassistance.de/jquery-plugins/jquery-plugin-validation – Wesley Murch Jun 2 '11 at 20:58
I don't think that the required attribute is being used correctly here. A required attribute would be something like 'Read the terms of service'. What is described here is either the function of a radio button set or a multiple selection box. – natedavisolds Jun 3 '11 at 1:58
3  
@natedavisolds, I would argue that the usage is useful in some UIs - IMO, selecting multiple checkboxes is more intuitive to the end-user, especially when the number of checkboxes is small - rather than a click+select as is the case with a multiple selection box. – Zabba Jun 3 '11 at 2:03
show 5 more comments

2 Answers

I guess there's no standard HTML5 way to do this, but if you don't mind using a jQuery library, I've been able to achieve a "checkbox group" validation using webshims' "group-required" validation feature:

The docs for group-required say:

If a checkbox has the class 'group-required' at least one of the checkboxes with the same name inside the form/document has to be checked.

And here's an example of how you would use it:

<input name="checkbox-group" type="checkbox" class="group-required" id="checkbox-group-id" />
<input name="checkbox-group" type="checkbox" />
<input name="checkbox-group" type="checkbox" />
<input name="checkbox-group" type="checkbox" />
<input name="checkbox-group" type="checkbox" />

I mostly use webshims to polyfill HTML5 features, but it also has some great optional extensions like this one.

It even allows you to write your own custom validity rules. For example, I needed to create a checkbox group that wasn't based on the input's name, so I wrote my own validity rule for that...

share|improve this answer

Edit: This answer is now OBE and should be ignored.

Although Hixie's words in that bug report seem pretty clear, I think the feature actually is supported, and here's why. Go here:

http://dev.w3.org/html5/spec/Overview.html#the-input-element

Scroll down until you see the big table labeled "Content attributes," the one with all the yellow highlighting. Match the row "required" with the column "Checkbox, Radio Button." The value is "Yes." If I'm reading this table right, that means the required attributed is supported for checkboxes.

Edit: Although this feature does not work with checkboxes, it does work with radio buttons, as the following code illustrates. Obviously the functionality is not what the OP desired, but maybe it will be helpful to some.

Try this bit of code on FF 5 or Chrome 12 (on Win7). You'll find that both support the required attribute just as you would expect:

<!DOCTYPE html>
<html>
    <body>
        <form id="processForm.php" action="post">
            <label>Please select the gender of your pet:</label>
            <input type="radio" name="gender" value="male" required>Male</input>
            <input type="radio" name="gender" value="female">Female</input>
            <input type="radio" name="gender" value="unknown">Unknown</input>
            <input type="submit" value="Submit">
        </form>
    </body>
</html>
share|improve this answer
1  
The problem is that it doesn't work with type="checkbox", where you want the user to select one or more options. The HTML5 validation tries top force you to select the first checkbox. jsfiddle.net/qAB5G – Wesley Murch Oct 14 '11 at 8:18
1  
Here's another, similar test created by someone else: jsfiddle.net/ErickPetru/kXsj9/6. – james.garriss Oct 14 '11 at 12:38
1  
As far as I can tell, @Wesley, the HTML5 spec doesn't say how this should behave one way or the other. While I can certainly see your POV for the checkboxes, it would appear that the browser vendors have interpreted the spec to mean "required only applies to individual checkboxes, not to a group of checkboxes." Looks like JS is the answer here. – james.garriss Oct 14 '11 at 12:40
This does not answer the question. Note from OP that Since only one of the checkboxes needs to be checked, I can't put the required attribute on each and every checkbox. The example you give for radio buttons works, but it does not work that way for checkboxes. If you specify a required attribute on a checkbox, user has to checkmark it. In a group of checkboxes, it is the same behavior - user must checkmark all that are "required". But I want that "only one, any one, of the checkboxex is required to be selected from a group. More can be selected if desired." – Zabba Mar 29 '12 at 19:34
Agreed. Post edited to hopefully avoid confusion for future readers. – james.garriss Mar 30 '12 at 12:41
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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