Default

= codeBlender "checkbox", "atom/form/checkbox", { label: { title: "Checkbox" }, input: { required: true } }
<div class='checkbox form-group' show-errors='{showSuccess: true}'>
<label class='control-label'>
<input required='required' type='checkbox'>
Checkbox
</label>
</div>


Disabled

= codeBlender "checkbox", "atom/form/checkbox", { label: { title: "Checkbox" }, input: { disabled: true } }
<div class='checkbox form-group' show-errors='{showSuccess: true}'>
<label class='control-label'>
<input disabled='disabled' type='checkbox'>
Checkbox
</label>
</div>


Resources Useful websites and tutorials

Tasks

Task Date
Work out how to do in-line checkboxes with the current partial
Allow the checkbox look and feel to be overridden i.e. a larger checkbox area
Figure out how to use validation messages with Checkboxes
Fancy checkboxes are breaking the normal ones
Allow for the classes to be altered, i.e. not just circle
Radio can use the same controls I think
Allow for Input classes to be altered
Give instructions on what needs to be installed to make these work