Document optgroups for selects

This commit is contained in:
Keegan
2016-05-28 14:50:06 -07:00
parent 41d38e04a7
commit 782eaf82f3
+54
View File
@@ -291,6 +291,60 @@ A dropdown menu containing multiple options.
}
```
If you wish to use optgroups, then use the following format:
```javascript
{
"type": "select",
"appKey": "flavor",
"defaultValue": "grape",
"label": "Favorite Flavor",
"options": [
{
"label": "",
"value": ""
},
{
"label": "Fruits",
"value": [
{
"label": "Berry",
"value": "berry"
},
{
"label": "Grape",
"value": "grape"
},
{
"label": "Banana",
"value": "banana"
}
]
},
{
"label": "Candy",
"value": [
{
"label": "Chocolate",
"value": "chocolate"
},
{
"label": "Cream",
"value": "cream"
},
{
"label": "Lollipop",
"value": "lollipop"
}
]
}
],
"attributes": {
"required": "required"
}
}
```
---
#### Color Picker