Skip to main content

Separator

type: "separator"

A labeled separator between fields. Can be used anywhere within a layout.

Properties

PropertyTypeRestrictionsDescription
typestringRequiredAlways separator.
labelstringRequiredThe 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"
]
}
]
}