I\'ve tried to use the html5 required
attribute for my group of checkboxes but I don\'t find a nice way to implement it with ng-form.
When a checkbox is che
If you want the submit button disabled if no choice is selected the easiest way is to check the length of the array in the ng-disabled attribute, without setting the required attribute
See here for updated fiddle
Another way to do this would be to check the array length in the ng-required attribute of the checkboxes
Second fiddle