NUI / Components / Scroll, Lists & Data
DynamicEntryBoxBase
DynamicEntryBoxBase is a base surface for repeated entries generated from data.
Supported as an advanced base repeated-entry component.
Overview
DynamicEntryBoxBase is a base surface for repeated entries generated from data.
When to use
- Use DynamicEntryBoxBase in advanced documentation or generated docs. Most public docs should lead users to DynamicEntryBox.
Children
Uses data/template fields instead of normal children.
Basic syntax
DynamicEntryBoxBase EntryBase {
items: "one|One|1;two|Two|2"
}Supported properties
| Property | Type | Required | Default | Description |
|---|---|---|---|---|
items | string | No | Empty | Inline item data. |
dataSource | string | No | Empty | Named external data source. |
itemKey | string | No | Empty | Field or static key binding. |
itemText | string | No | Empty | Field or static display text binding. |
itemValue | string | No | Empty | Field or static value binding. |
itemCommand | string | No | Empty | Command when an entry is used. |
layout | enum | No | vertical | Entry layout mode. |
entryWidth | number | No | Default | Entry width. |
entryHeight | number | No | Default | Entry height. |
entrySpacing | number | No | 0 | Space between entries. |
recycleEntries | bool | No | true | Reuses entry widgets. |
recyclePoolSize | integer | No | Default | Recycle pool size. |
width | number | No | Auto | Desired width. |
height | number | No | Auto | Desired height. |
visible | bool | No | true | Visibility flag. |
Contextual properties
Contextual property rules
DynamicEntryBoxBase may receive stack, canvas, grid, wrap, or ExpandableArea slot properties only when it is authored as a direct child of the matching parent. It does not support normal authored child nodes.
Full syntax example
DynamicEntryBoxBase EntryBase {
items: "one|One|1;two|Two|2"
itemKey: "id"
itemText: "label"
itemValue: "value"
itemCommand: "UseEntry"
layout: vertical
entryWidth: 180
entryHeight: 32
entrySpacing: 6
recycleEntries: true
recyclePoolSize: 16
width: 320
height: 240
visible: true
}Limitations
- Normal children { ... } blocks are not public syntax for this component.
- Prefer DynamicEntryBox for most public documentation.