ToggleGroup | UI extension components (BETA)
APPLICABLE PRODUCTS
-
Sales Hub
- Enterprise
-
Service Hub
- Enterprise
The ToggleGroup
component renders a list of selectable options, either in radio button or checkbox form.
- Group label: the text that displays above the group of checkboxes.
- Tooltip: on hover, displays additional information about the field.
- Unchecked checkbox: an unselected checkbox.
- Option label: the text that displays next to the checkbox.
- Option description: the text that displays below the option label to describe the option.
Prop | Type | Description |
---|---|---|
name Required |
String | The input's unique identifier. |
label Required |
String | The text that displays above the toggles. |
options Required |
Array | An array of options to display in the group. Each object in the array contains:
|
toggleType Required |
'radioButtonList' | 'checkboxList' (default) |
The type of toggle, whether checkboxes or radio buttons. Radio buttons only allow one option to be selected. |
variant |
'default' (default) | 'small' |
The size of the toggle. |
error |
Boolean | When set to true, validationMessage is displayed as an error message if provided. The input will also render its error state to let the user know there is an error. If left false , validationMessage is displayed as a success message. |
value |
String | The value of the toggle group.
|
required |
Boolean | When set to true , displays a required indicator next to the toggle group. Default is false . |
tooltip |
String | Text that will appear in a tooltip next to the toggle group label. |
validationMessage |
String | The text to display if the input has an error. |
inline |
Boolean | When set to true , stacks the options horizontally. Default is false . |
readonly |
Boolean | When set to true , users will not be able to select the toggle. Default is false . |
onChange |
(checked: boolean) => void | A function that is invoked when the toggle is clicked. |
By default, the toggle group will render as a vertical list of checkboxes. Using the toggleType
prop, you can set the options to display as checkboxes or radio buttons. You can also use the inline
prop to stack options horizontally.
toggleType='checkboxList' (default) |
|
toggleType='radioButtonList' |
|
inline={true} |
- DO: use this component when the user has a small selection of items to choose from. For longer lists of options, consider using the Select component instead.
- DO: keep label options concise when possible.
- DON'T: use toggle groups to display long lists of options.
Thank you for your feedback, it means a lot to us.
This form is used for documentation feedback only. Learn how to get help with HubSpot.