2021-10-17 18:26:00 +02:00
|
|
|
---
|
|
|
|
title: Nested option groups
|
|
|
|
---
|
2021-08-25 16:09:31 +02:00
|
|
|
|
|
|
|
You can create sub-groups within an option group:
|
|
|
|
|
|
|
|
```js
|
|
|
|
optionGroups: {
|
|
|
|
style: [
|
|
|
|
'hemStyle',
|
|
|
|
'hemCurve',
|
|
|
|
{
|
|
|
|
closure: [
|
|
|
|
'extraTopButton',
|
|
|
|
'buttons',
|
|
|
|
'buttonFreeLength'
|
|
|
|
]
|
|
|
|
},
|
|
|
|
]
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
<Warning>
|
|
|
|
Only create subgroups one level deep.
|
|
|
|
We do not support groups in groups in groups.
|
|
|
|
</Warning>
|
2021-10-17 18:26:00 +02:00
|
|
|
|