Use the radios component when users should only be able to select one option and no more.
Do not use the radios component when you need to help users:
In these cases, use the checkboxes component (for a single option or a short list of options) or the checkboxes with filter component (for a long list of options) instead.
When users should be able to select one option and no more from a long list of options:
The radios component is a form element that should always be used in a form. For a description of the usage, the behavior, the layout and validation of form elements, see the form component examples and documentation.
<fieldset class="form-item {{ modifier }}">
<legend>
{{ label }}
{% if label_optional %}
<span class="label-optional">({{ label_optional }})</span>
{% endif %}
</legend>
<div class="form-item">
{% if field_description %}
{% include '@field-message' with {
"field_message": field_description,
"id": id ~ '-description',
"modifier": null
} %}
{% endif %}
<div class="form-columns">
<div class="form-item-column">
{% for option in options %}
{% include '@input' with {
"id": "input-" ~ id ~ "-" ~ modifier ~ "-" ~ option.id,
"type": "radio",
"name": option.name,
"label": option.label,
"modifier": modifier
} %}
{% endfor %}
</div>
<div class="form-item-column">
{% if modifier == 'error' %}
{% include '@field-message' with {
"id": id ~ '-validation',
"modifier": "error"
} %}
{% endif %}
{% if modifier == 'success' %}
{% include '@field-message' with {
"id": id ~ '-validation',
"modifier": "success"
} %}
{% endif %}
</div>
</div>
</div>
</fieldset>
<fieldset class="form-item ">
<legend>
radio buttons
</legend>
<div class="form-item">
<div class="form-columns">
<div class="form-item-column">
<div class="radio">
<input type="radio" id="input-input-radio--radio-error-1" name="radiogroup-error" class="radio" />
<label for="input-input-radio--radio-error-1">Radio option 1</label>
</div>
<div class="radio">
<input type="radio" id="input-input-radio--radio-error-2" name="radiogroup-error" class="radio" />
<label for="input-input-radio--radio-error-2">Radio option 2</label>
</div>
</div>
<div class="form-item-column">
</div>
</div>
</div>
</fieldset>
{
"id": "input-radio",
"label": "radio buttons",
"options": [
{
"label": "Radio option 1",
"name": "radiogroup-error",
"id": "radio-error-1"
},
{
"label": "Radio option 2",
"name": "radiogroup-error",
"id": "radio-error-2"
}
]
}