Separator
type: "separator"
A labeled separator between fields. Can be used anywhere within a layout.
Properties
| Property | Type | Restrictions | Description |
|---|---|---|---|
| type | string | Required | Always separator. |
| label | string | Required | The label of the separator. |
Example
mobro-widget-config.json
{
"layout": [
{
"type": "fieldset",
"label": "My fieldset",
"children": [
"field_a",
{
"type": "separator",
"label": "My separator"
},
"field_b"
]
}
]
}