Radio Button
Displays a group of radio buttons for user selection in chat interfaces.
Common Properties
- Name - The custom name of the node.
- Color - The custom color of the node.
- Delay Before (sec) - Waits in seconds before executing the node.
- Delay After (sec) - Waits in seconds after executing node.
- Continue On Error - Automation will continue regardless of any error. The default value is false.
info
If the ContinueOnError property is true, no error is caught when the project is executed, even if a Catch node is used.
Inputs
- Session Id - Unique identifier for the UI client connection.
- Label - Optional label for the radio button group.
- Description - Optional description for the radio button group.
Options
- Radio Button Array - Array of radio buttons to display.
- Custom Options - Custom options for radio buttons.
Output
- Result - User selection from the radio button group.
How It Works
The Radio Button node creates an interactive widget with multiple radio buttons where users can select only one option. When executed, the node:
- Validates the provided Session ID
- Checks that the session is not in conversational mode
- Builds the radio button options from the provided array or custom options
- Creates a radio button widget with the specified label and description
- Sends the widget to the client with the specified session ID
- Waits for the user's selection
- Parses the response as JSON or string
- Returns the parsed selection as the result
Requirements
- A valid session ID for an active client connection
- Properly configured client interface that can handle radio button widgets
- Session must not be in conversational mode
Error Handling
The node will return specific errors in the following cases:
- Empty or invalid Session ID
- Session not found for the provided ID
- Radio button list is required but not provided
- Failed to build radio button options
- Cannot use radio button in conversational mode
- Failed to send widget to client
- Timeout while waiting for user selection
- Failed to parse user response
Usage Notes
- The Session ID must match an active client connection
- The Label and Description fields are optional but can help users understand what they're selecting
- Users can only select one option from the radio button group
- The returned selection will be in the format provided by the client (JSON or string)
- Radio buttons cannot be used in conversational mode