Number
The number input is used for numeric data.
Number input example
[
{
"type": "number",
"title": "Number input title",
"payloadName": "number_input",
"defaultValue": "42",
"helpText": "Number input help text"
}
]
[
{
"type": "checkbox",
"title": "This example changes supported fields in the child input",
"payloadName": "parent"
},
{
"type": "number",
"title": "Child input title",
"payloadName": "child",
"defaultValue": "42",
"helpText": "Child input description",
"condition": {
"when": "parent",
"is": "true",
"then": {
"title": "New title",
"helpText": "New helpText",
"defaultValue": "43"
}
}
}
]
Last updated