Separator
type: "separator"
Simple separator to separate fields. Can be used inline of another layout.
Additional Fields
Field | Type | Description |
---|---|---|
label | string? | The optional label. |
Example
mobro-widget-config.json
{
"layout": [
{
"type": "fieldset",
"label": "My fieldset",
"children": [
"field_a",
{
"type": "separator",
"label": "My Separator"
},
"field_b"
]
}
]
}