Skip to main content

Radio Button Group

This node manages a set of Radio Buttons.

The Radio Button Group node acts as a container that enforces single-selection logic for its children.

The Radio Button Group node is a container. You place Radio Button nodes inside it. The group manages the state: when one child button is selected, the group automatically deselects the others. It outputs the Value of the currently selected child.

Inputs

General

DataDescription
ValueThe value of the currently selected option. Setting this will select the child button with the matching value.

Layout

DataDescription
Layout"Vertical" (Column) or "Horizontal" (Row). Controls how the child buttons are arranged.

Outputs

States

DataDescription
ValueThe value of the currently selected radio button.

Events

SignalDescription
ChangedTriggered when the selection changes.

Usage

Creating a Choice List

  1. Add a Radio Button Group.
  2. Inside it, add 3 Radio Button nodes.
  3. Set their Values to "small", "medium", "large".
  4. Set their Labels to "Small", "Medium", "Large".
  5. Connect the Group's Value output to a Variable or Database update.

Detailed Behavior

  • Matching: When you set the Group's Value input, it looks for a child with that Value. If found, it checks it. If not, no button is checked.
  • Children: Must be direct children or nested within layout groups inside the Radio Button Group.

Troubleshooting

  • No Selection: Ensure the Value you set matches one of the child buttons exactly (case-sensitive).