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