Radio Button
Last updated
Was this helpful?
Last updated
Was this helpful?
{
"type": "Radio",
"properties": {
"labelName": "Exported file format:",
"options": [
{
"option": "pptx",
"text": "PowerPoint"
},
{
"option": "pdf",
"text": "PDF"
},
.......
],
"bindingPropertyName": "fileType"
}
}
The property name needs to match the string specified in bindingPropertyName property. The dropdown matches against default state using the "option" property
{
"fileType": "pptx"
}