The Date Picker component for Retool Mobile
An input field to select or enter a date.
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
displayTimeZone
The time zone (UTC offset) that applies to the display value. Uses the time zone reported by the browser if set to local
.
Type | string | ||||
Mutability |
|
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 |
|
manageTimeZone
Whether to adjust the value and display value of time zones using valueTimeZone
and displayTimeZone
respectively.
Type | unknown | ||||
Mutability |
|
mode
How to render images to fit.
Type | string | ||||||||||
Mutability |
| ||||||||||
Allowed Values |
|
placeholder
The text to display within the input field when there is no value.
Type | string | ||||
Format | string | ||||
Mutability |
| ||||
Default |
|
Examples
timeZoneValue
The time zone (UTC offset) to encode in value
. Select local
to use the time zone reported by the user's browser.
Type | unknown | ||||
Mutability |
|
value
The current or default value.
Type | string | ||||||
Format | Plain Text | ||||||
Mutability |
| ||||||
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.
datePicker.clearValidation()
Clear the validation message from the input field.
datePicker.clearValidation()
Examples
datePicker.resetValue()
Reset the current value to the default value.
datePicker.resetValue()
Examples
datePicker.setDisabled()
Set the disabled
value to toggle whether the input field is disabled. Defaults to true
without a parameter.
datePicker.setDisabled(disabled)
Parameters
Examples
datePicker.setHidden()
Set the hidden
value to toggle whether the component is visible. Defaults to true
without a parameter.
datePicker.setHidden(hidden)
Parameters
Examples
datePicker.setValue()
Sets the value of the date picker.
datePicker.setValue(value)
Parameters
Examples
datePicker.validate()
Validates the value of the input field.
datePicker.validate()
Examples
Events
Events triggered by user interactions. Use event handlers to trigger queries or other actions in response to events.