PageBuilder
Visual section builder for MODX 3. Draft and publish without overwriting resource content

Version: Pro.
Fields schema like repeater but single row object. Compact than one-row repeater. Pro for fixed-shape config block.
Row list is repeater. Flat keys without wrapper object is fieldset.
{
"name": "row",
"type": "jsongrid",
"label": "Row",
"fields": [
{
"name": "title",
"type": "text",
"label": "Title"
}
],
"tab": "Content",
"width": 100,
"active": true
}Object with nested field keys.
Key row in the section data: one object with nested field keys:
{
"row": {
"title": "SEO title",
"description": "SEO description"
}
}{if $row.title}
<h4>{$row.title|escape}</h4>
{/if}For fields with name that are stored in the section data:
| Key | Type | Role | CMP |
|---|---|---|---|
tab | string | Group subtitle in the inspector | yes |
width | 25–100 | Field width as % of the row (flex) | yes |
description | string | Hint under the label | yes |
default | any | Initial value for a new section | yes |
active | bool | false hides the field in the inspector | yes |
required | bool | Required on publish (draft still saves) | yes |
fields[]: one row = one object in data (not an array).See fields overview.