Page History
...
- Direct in app composer components:
{{ selection.rowId }}or explicit{{ local.selection.rowId }} - Via Get actions inside an action chain when an intermediate action (e.g. API Invoke) needs the value.
Prefer direct template access; use Get sparingly to keep chains lean.
5. Reactivity With ON_DATA_HUB_CHANGE
...
| Pattern | Guidance | ||
|---|---|---|---|
| Generic key reused widely | Add prefix (report.filters, tbl.selection) | Potential override scenario | Use fallback: {{ local.setting || app.setting || global.setting }} |
| Temporary chain scratch values | Prefix with underscore (_tempPayload) and keep Local |
...