Skip to main content

RadioButton

Shadow dwc-radio
Java API

The RadioButton class creates an object that can be selected or deselected, and which displays its state to the user. By convention, only one radio button in a group can be selected at a time. Radio buttons are commonly used when mutually exclusive options are available, allowing the user to choose a single option from a set of choices.

Show Code

Usages

The RadioButton is best used in scenarios where users need to make a single selection from a predefined set of options. Here are some examples of when to use the RadioButton:

  1. Survey or Questionnaires: Radio buttons are commonly used in surveys or questionnaires where users need to select a single response from a list of options.

  2. Preference Settings: Applications that involve preference or settings panels often use Radio buttons to allow users to choose a single option from a set of mutually exclusive choices.

  3. Filtering or Sorting: A RadioButton can be used in applications that require users to select a single filter or sorting option, such as sorting a list of items by different criteria.

Constructors

The RadioButton class has three constructors:

  1. RadioButton(): Creates an empty RadioButton in the unchecked state.
  2. RadioButton(String text): Creates a RadioButton with an attached label in the unchecked state.
  3. RadioButton(String text, boolean checked) Creates a RadioButton with an attached label in either the checked or unchecked state, based on the boolean passed (true for checked, false for unchecked).

Here is an example of how to create a RadioButton object:

RadioButton myRadioButton = new RadioButton("RadioButton Text");

Text and Positioning

Radio buttons can utilize the setText(String text) method, which will be positioned near the radio button according to the built-in Position. Radio buttons have built-in functionality to set text to be displayed either to the right or left of the component. By default, the text will be displayed to the right of the component. Positioning of the horizontal text is supported by use of the HorizontalAlignment enum class. Show below are the two settings:

Show Code

Activation

Radio buttons can be controlled using two types of activation: manual activation and auto activation. These dictate when a RadioButton will change its state.

Show Code

Manual Activation

When a radio button is set to manual activation, it means that it will not be automatically checked when it gains focus. Manual activation allows the user to navigate through the radio button options using the keyboard or other input methods without immediately changing the selected option.

If the radio button is part of a group, selecting a different radio button within the group will automatically uncheck the previously selected radio button. Manual activation provides finer control over the selection process, requiring an explicit action from the user to change the selected option.

Auto Activation

Automatic activation is the default state for a RadioButton, and means that the button will be checked on whenever it gains focus for any reason. This means that not only clicking, but auto-focus or tab navigation will also check the button.

Note

The default activation value is MANUAL activation.

Switches

A RadioButton can also be set to display as a switch provides which provides alternative visual representation for selecting options. Normally, radio buttons are circular or rounded in shape and indicate a single choice from a group of options.

Show Code

A RadioButton can be transformed into a switch that resembles a toggle switch or slider using one of two methods:

  1. The Factory Method: The RadioButton can be created using the following Factory methods:
Switch(String text, boolean checked);
Switch(String text);
Switch();

These methods mirror a RadioButton constructor, and will create the component with the switch property already toggled on.

  1. Setter: It is also possible to change an already existing RadioButton into a switch by using the appropriate setter:
myRadioButton.setSwitch(true);

When a RadioButton is displayed as a switch, it typically appears as a oblong shape with an indicator that can be toggled on or off. This visual representation gives users a more intuitive and familiar interface, similar to physical switches commonly found in electronic devices.

Setting a RadioButton to display as a switch can improve user experience by providing a clear and straightforward way to select options. It can enhance the visual appeal and usability of forms, settings panels, or any other interface element that requires multiple choices.

info

The behavior of the RadioButton remains the same when being rendered as a Switch, meaning only one option can be selected at a time within a group. The switch-like appearance is a visual transformation which retains the functionality of a RadioButton.


Styling

Expanses

There are five checkbox expanses that are supported which allow for quick styling without using CSS. Expanses are supported by use of the Expanse enum class. Below are the expanses supported for the checkbox component:

Shadow Parts

These are the various parts of the shadow DOM for the component, which will be required when styling via CSS is desired.

Loading...

CSS Properties

These are the various CSS properties that are used in the component, with a short description of their use.

Loading...

Reflected Attributes

The reflected attributes of a component will be shown as attributes in the rendered HTML element for the component in the DOM. This means that styling can be applied using these attributes.

Loading...

Dependencies

This component relies on the following components - see the related article for more detailed styling information:

Loading...

Best Practices

To ensure an optimal user experience when using the RadioButton component, consider the following best practices:

  1. Clearly Label Options: Provide clear and concise text for each RadioButton option to accurately describe the choice. Text should be easy to understand and distinguish from one another.

  2. Group Radio buttons: Group related Radio buttons together to indicate their association. This helps users understand that only one option can be selected within a specific group. This can be done effectively using the RadioButtonGroup component.

  3. Provide Default Selection: If applicable, consider providing a default selection for Radio buttons to guide users when they first encounter the options. The default selection should align with the most common or preferred choice.

Dependencies

This component relies on the following components - see the related article for more detailed styling information:

Loading...