RadioGroup
Class
A radio button group container.
textDirection
anyA signal wrapper for directionality.
items
anyThe RadioButton UIPatterns of the child RadioButtons.
orientation
anyWhether the radio group is vertically or horizontally oriented.
skipDisabled
anyWhether disabled items in the group should be skipped when navigating.
focusMode
anyThe focus strategy used by the radio group.
disabled
anyWhether the radio group is disabled.
readonly
anyWhether the radio group is readonly.
value
anyThe value of the currently selected radio button.
onFocus
void@returns
voidDescription
A radio button group container.
Radio groups are used to group multiple radio buttons or radio group labels so they function as a single form control. The RadioGroup is meant to be used in conjunction with RadioButton as follows:
<div ngRadioGroup> <div ngRadioButton value="1">Option 1</div> <div ngRadioButton value="2">Option 2</div> <div ngRadioButton value="3">Option 3</div></div>
Jump to details