The Slider component for Retool Mobile
A slider to select a number value.
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
true
hidden
Whether this object is hidden from view.
Type | boolean | ||||||
Format | True/False | ||||||
Mutability |
| ||||||
Default |
|
Examples
true
label
The text label to display.
Type | string | ||||
Format | Plain Text | ||||
Mutability |
| ||||
Default |
|
Examples
"Label"
labelCaption
Whether to hide the caption displayed with the value.
Type | boolean | ||||
Format | Plain Text | ||||
Mutability |
|
max
The maximum value to allow.
Type | number | ||||
Mutability |
|
min
The minimum value to allow.
Type | number | ||||
Mutability |
|
step
The step value to increment or decrement by.
Type | number | ||||
Mutability |
|
Methods
JavaScript API methods for this object. You can write JavaScript almost anywhere in Retool and use methods to manipulate data and property values.
slider.clearValidation()
Examples
Clear the validation message from slider
.
slider.clearValidation();
slider.clearValue()
Examples
Clear the current value of slider
.
slider.clearValue();
slider.focus()
Examples
Set focus on slider
.
slider.focus();
slider.resetValue()
Examples
Reset the current value of slider
.
slider.resetValue();
slider.setDisabled()
Set the disabled
value to toggle whether the input field is disabled. Defaults to true
without a parameter.
slider.setDisabled(disabled)
Parameters
disabled
Whether input, interaction, selection, or triggering is disabled.
Examples
Disable slider
.
slider.setDisabled(true);
Enable slider
.
slider.setDisabled(false);
slider.setHidden()
Set the hidden
value to toggle whether the component is visible. Defaults to true
without a parameter.
slider.setHidden(hidden)
Parameters
hidden
Whether this object is hidden from view.
Examples
Hide slider
.
slider.setHidden(true);
Unhide slider
.
slider.setHidden(false);
slider.setValue(value)
Parameters
value
The value.
Examples
Set the current value of slider
to userValue
.
slider.setValue(userValue);
slider.validate()
Examples
Validate the value of slider
.
slider.validate();
Events
Events triggered by user interactions. Use event handlers to trigger queries or other actions in response to events.