The Checkbox Group component for Retool Mobile
A group of checkboxes to toggle boolean values.
Properties
All properties for this object with supported data types or values. You can write JavaScript almost anywhere in Retool to manipulate or read property values.
disabled
Whether input, interaction, selection, or triggering is disabled.
Type | boolean | ||||||
Format | True/False | ||||||
Mutability |
| ||||||
Default |
|
Examples
hidden
Whether this object is hidden from view.
Type | boolean | ||||||
Format | True/False | ||||||
Mutability |
| ||||||
Default |
|
Examples
label
The text label to display.
Type | string | ||||
Format | Plain Text | ||||
Mutability |
| ||||
Default |
|
Examples
labelCaption
The additional text to display with the label.
Type | string | ||||
Format | Plain Text | ||||
Mutability |
|
labels
A list of labels for each item. Falls back to the corresponding value
if no label is provided.
Type | array |
Array values | string |
Mutability | Read-only |
Default |
|
Examples
Methods
JavaScript API methods for this object. You can write JavaScript almost anywhere in Retool and use methods to manipulate data and property values.
checkboxGroup.clearValidation()
Clear the validation message from the input field.
checkboxGroup.clearValidation()
Examples
checkboxGroup.resetValue()
Reset the current value to the default value.
checkboxGroup.resetValue()
Examples
checkboxGroup.setDisabled()
Set the disabled
value to toggle whether the input field is disabled. Defaults to true
without a parameter.
checkboxGroup.setDisabled(disabled)
Parameters
Examples
checkboxGroup.setHidden()
Set the hidden
value to toggle whether the component is visible. Defaults to true
without a parameter.
checkboxGroup.setHidden(hidden)
Parameters
Examples
checkboxGroup.setValue()
Set the current value.
checkboxGroup.setValue(value)
Parameters
Examples
checkboxGroup.validate()
Validates the value of the input field.
checkboxGroup.validate()
Examples
Events
Events triggered by user interactions. Use event handlers to trigger queries or other actions in response to events.