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