Dropdown
Last updated
Was this helpful?
Last updated
Was this helpful?
{
"type": "Dropdown",
"properties": {
"labelName": "QR type",
"options": [
{
"option": "",
"text": "Please Select"
},
{
"option": "url",
"text": "Website address"
},
.......
],
"bindingPropertyName": "qrType"
}
}
The property name needs to match the string specified in bindingPropertyName property. The dropdown matches against default state using the "option" property
{
"qrType": "url"
}