-
Notifications
You must be signed in to change notification settings - Fork 19
Input Types
Bryan Fox edited this page Oct 29, 2018
·
6 revisions
The following input types may be used as the value for a form field component.
TextInput
NumberInput
-
NumberCounter
(not implemented) -
NumberWheel
(not implemented) -
Date
(not implemented) Checkbox
Toggle
ToggleButton
RadioGroup
-
RangeSlider
(not implemented) CheckboxGroup
ToggleGroup
ToggleButtonGroup
hidden
For example:
{
"forms": {
"personForm": {
"fields": [
{
"variable": "name",
"component": "TextInput"
},
{
"variable": "isFriend",
"component": "Checkbox"
}
]
}
}
}