Create & Control Semantic UI Checkboxes & Radio Buttons with Angular Directives
optional
required
model
=
the variable to place the value of the checkbox.label
@
a string for the label of the checkbox.settings
=
reference to a settings object to pass to the initialization function.enabled
=
a value which can enable/disable the checkbox when it changes.checked-value
=
the value of the model when the checkbox is in a checked state (default is true).unchecked-value
=
the value of the model when the checkbox is in an unchecked state (default is false).indeterminat-value
=
the value of the model when the checkbox is in an indeterminate state (default is undefined).children
@
a selector string of checkboxes that are the 'children' of this checkbox. I.E. the state of this checkbox is determined by the collective state of it's children. When all children are checked - this checkbox is checked. When all children are unchecked - this checkbox is unchecked. When the children have mixed states - this checkbox is indeterminate. When this checkbox is checked it checks all children. When this checkbox is unchecked it unchecks all children.on-init
=
Callback once the module is initialized, passing the initialized element as the first argument.on-change
=
Callback after a checkbox is either checked or unchecked.on-checked
=
Callback after a checkbox is checked.on-indeterminate
=
Callback after a checkbox is set to undeterminate.on-determinate
=
Callback after a checkbox is set to determinate.on-unchecked
=
Callback after a checkbox is unchecked.on-enable
=
Callback after a checkbox is enabled.on-disable
=
Callback after a checkbox is disabled.model
=
the variable to place the value of the radio.label
@
a string for the label of the radio.name
@
the name which groups radio buttons together.value
=
the value of the model if this radio button is selected.settings
=
reference to a settings object to pass to the initialization function.enabled
=
a value which can enable/disable the checkbox when it changes.on-init
=
Callback once the module is initialized, passing the initialized element as the first argument.on-change
=
Callback after a checkbox is either checked or unchecked.on-checked
=
Callback after a checkbox is checked.on-unchecked
=
Callback after a checkbox is unchecked.on-enable
=
Callback after a checkbox is enabled.on-disable
=
Callback after a checkbox is disabled.These attribute directives invoke a behavior on the component where the attribute value can be one of the following formats:
$
@
A selector string.evt
@
The event string which triggers the behavior ('click' by default).enabled
=
A boolean value which determines whether or not the behavior should be called when the event occurs.value
=
The first argument to pass to the behavior if it requires one.