I have a number of checkboxes listed on a page, the rendered html is as follows:
I need these grouped checkboxes to use validation so that at least one of the items is checked.
<input id="element_frm1167_8_1" name="test" class="element checkbox" type="checkbox" value="1" validate="required:true, minlength:2">
<input id="element_frm1167_8_2" name="test" class="element checkbox" type="checkbox" value="1" >
<input id="element_frm1167_8_3" name="test" class="element checkbox" type="checkbox" value="1" >
I've looked at an example from http://jquery.bassistance.de/validate/demo/radio-checkbox-select-demo.html
However, when I call form.Validate() I dont get any validation happening.
Please could someone point me in the right direction.