Skip to main content

Separator

type: "separator"

Simple separator to separate fields. Can be used inline of another layout.

Additional Fields

FieldTypeDescription
labelstring?The optional label.

Example

mobro-widget-config.json
{
"layout": [
{
"type": "fieldset",
"label": "My fieldset",
"children": [
"field_a",
{
"type": "separator",
"label": "My Separator"
},
"field_b"
]
}
]
}