Parse Nested $ Syntax
Status
Release Available | Status | Framework Name |
---|---|---|
4.1 | Current | Both Mui and Mint |
General
With this feature, a portal admin can write nested expressions, so that $ expressions can have an inner $ expression. This feature is helpful for the dynamic container to get the counts based on nested query expressions.
Note:
- Inner expressions should be resolved to a simple data type, such as string or number, but not an array or object.
To use this feature, set
"enableNestedExpParsing"
toTrue
in global settings. For more information on global settings, see Global.
Examples
Code JSON
$interaction(actorName:$parent.attr(id).attr(selectedIds).count();
Code JSON
$interaction(actorName:$parent.attr($global.attr(parentActorAttribute);).attr(selectedIds).count();