
PageBuilder
Visual section builder for MODX 3: draft and publish without overwriting resource content
- MODX 3
- PHP 8.2
- Vue 3


Version: Pro.
A group label in the inspector. The group has no key of its own in the section data: nested fields keep their own names, and those names must be unique in the section. It is in Pro, to split a long form.
Heading only without nested is heading. Chunk uses flat keys seo_title not seo.title.
{
"name": "seo",
"type": "fieldset",
"label": "SEO",
"fields": [
{
"name": "seo_title",
"type": "text",
"label": "SEO title"
}
]
}Flat keys of nested fields in the section data.
The seo key in the schema is not stored in the section data. Nested fields are flat keys:
{
"seo_title": "SEO title"
}[[+seo_title]]{$seo_title|pb_text}fieldset has no own key in the section data. Nested fields are flat keys alongside other section fields.
| Key | Role |
|---|---|
label | Group title (legend) |
fields | Nested schema |
tab / width | Inspector grouping |
Nested fields support the usual meta keys (tab, width, default, …).