Properties
A radio button component, that lets the user select a given value from a list.
Name
Description
Default
Mandatory
type
Checkbox
N/A
id
Unique ID within the flow
N/A
config.title
The title text to the right
""
config.value_true
Property value for when the checkbox is checked
"true"
config.value_false
Property value for when the checkbox is not checked
"false"
config.data
This initial value of the checkbox. Can be true/false of a string equal to the value_true.
false
config.readonly
Open to edit by enduser. true/false
false
config.required
Must have a value when leaving the step. true/false
false
config.always_include
Always include in pipe requests
true
{
"id": "my_checkbox",
"type": "Checkbox",
"config": {
"title": "Check this box please.",
"value_true": "Yes its checked",
"value_false": "No its not"
},
"data": true
}