Documentation

Documentation versions (currently viewingVaadin 23)

You are viewing documentation for Vaadin 23. View latest documentation

Radio Button

Radio Button Group allows the user to select exactly one value from a list of related, but mutually exclusive, options.

Open in a
new tab
Source code
radio-button-basic.ts
RadioButtonBasic.java

Common Input Field Features

Radio Button Group includes all shared input field features.

States

Read-Only

Use read-only when content needs to be accessible but not editable. Read-only elements can’t be edited, but they are part of the tabbing order and can thus receive focus. The contents of a read-only input can be selected and copied.

Open in a
new tab
Source code
radio-button-readonly.ts
RadioButtonReadonly.java

Disabled

Disable a field to mark it as currently unavailable. The disabled state is used for fields that aren’t editable and don’t need to be readable. Disabled elements can’t be focused and may be inaccessible to assistive technologies such as screen readers.

Disabling can be preferable to hiding an element to prevent changes in layout when the element’s visibility changes, and to make users aware of its existence even when it’s currently unavailable.

Open in a
new tab
Source code
radio-button-disabled.ts
RadioButtonDisabled.java

Orientation

The component’s default orientation is horizontal but vertical orientation is recommended whenever possible, as it’s easier for the user to scan a vertical list of options:

Open in a
new tab
Source code
radio-button-vertical.ts
RadioButtonVertical.java

In cases where vertical space needs to be conserved, horizontal orientation can be used, but it’s recommended to have no more than three options:

Open in a
new tab
Source code
radio-button-horizontal.ts
RadioButtonHorizontal.java

In cases where more options need to be provided, the Select component can be used instead.

Custom Item Presentation

Items can be customized to include more than a single line of text:

Open in a
new tab
Source code
radio-button-presentation.ts
RadioButtonPresentation.java
Card.java
Card.java
DataService.java
DataService.java

Best Practices

Group Labels

It’s important to provide labels for Radio Button Groups to clearly distinguish them from one another, especially with multiple adjacent groups.

Open in a
new tab
Source code
radio-button-group-labels.ts
RadioButtonGroupLabels.java

Custom Option

To enable the user to enter a custom option instead of picking one from the list, use an “Other” radio button at the bottom of the list with an associated Text Field for entry. The field should be hidden or disabled until the “Other” option is selected.

Open in a
new tab
Source code
radio-button-custom-option.ts
RadioButtonCustomOption.java

Default Value and Blank Option

It’s recommended to set the most common option as the default value for Radio Button Groups. Place the default option at the top of the list.

In cases where it’s important that the user make a conscious choice, the Radio Button Group should be blank by default.

In situations where the user isn’t required to select a value, use a “blank” option:

Open in a
new tab
Source code
radio-button-default-value.ts

As an Alternative to a Checkbox

Two Radio Buttons can sometimes be a better alternative to a single Checkbox.

If the Checkbox doesn’t represent a simple yes/no choice, and its label can’t clearly communicate the meaning of its unchecked state, it’s better to use a Radio Button Group with two options:

Open in a
new tab
Source code
radio-button-checkbox-alternative.ts

In a Horizontal Layout, Radio Button Groups also align better with other input fields than a single checkbox.

Component Usage recommendations

Select

A drop-down field for selecting an item from a list of options. Recommended when there is insufficient space for a Radio Button Group.

Combo Box

A filterable, lazy-loading alternative to Select, recommended for ten or more items.

List Box

A scrollable list of options. Supports single and multi-select.

Checkbox

A corresponding component for multi-select options.

E1E617CE-F935-451D-885F-CEF94EC0E53A