I want to write a jQuery Validation rule for check-boxes where a parent checkbox category must be selected and a child category for that parent has to be selected too (should the parent have a child checkbox). Otherwise the form will not submit.
The code below has 2 parent check-box categories and 3 child check-box categories for the first parent checkbox. If a user selects the first parent checkbox he/she must click on a child one. However if they click on the second parent checkbox which has no children the form can go through.
<ul id = "checklist">
<li id = "box">
<label> <input id = "box_input" type = "checkbox"> "A CheckBox"</label>
<ul id = "checklist_children">
<li id = "box">
<label> <input id = "box_input" type = "checkbox"> "A CheckBox"</label>
</li>
<li id = "box">
<label> <input id = "box_input" type = "checkbox"> "A CheckBox"</label>
</li>
<li id = "box">
<label> <input id = "box_input" type = "checkbox"> "A CheckBox"</label>
</li>
</ul>
</li>
<li id = "box">
<label> <input id = "box_input" type = "checkbox"> "A CheckBox"</label>
</li>
</ul>
In regards to the validation so far what I wrote was a method that sees if any boxes are selected and if so no validation is needed. I want to modify this
...
my_checkbox_rule: {
required: function (element) {
var boxes = $('#box_input');
if (boxes.filter(':checked').length == 0) {
return true;
}
},
minlength: 1
},
...
I want to modify the above code to allow that functionality. I can provide more information than needed.
Just as an extra note the child boxes have the same id as the parent boxes. This was intended.
As others have said the id selector is unique, meaning that when you do
$('#box_input')
you will only get the first object with id = 'box_input'. I suggest changingid = 'box_input'
forclass = 'box_input'
. You can then add ids to the first parent and its children. Something likeid = 'parent_box'
, and for children eitherid = 'children_1'
and so on, orclass = 'box_input children'
. Afther that is done I would do something likeif ($('#box_input').filter(':checked') && $('.children').filter(':checked')) { return true; }