Access all the children data of a dynamic container actor and count
Status
Release Available | Status | Framework Name |
---|---|---|
4.1 | Current | Mint and MUI both |
General
As a Portal administrator, you can access all the children's data corresponding to a parent dynamic actor and count the number of records. This is helpful to show the number of records available or selected by an end-user.
Note:
For nested parsing, the "enableNestedExpParsing": true
needs to be added under the Global setting.
Code JSON
$children(parentActor, contactList).count();
Where,
parentActor
: Name of the dynamic container actor.contactList
: Name of the child actor within the dynamic container actor.
You can also get the total counts for the titles.
Code JSON
"titles": [ { "title": "$this.attr(Name); — $this.attr(Industry); ($interaction(ContactList123:$this.attr(id);).attr(selectedIds).count(); of $state(ContactList123:$this.attr(id);).count(); Selected)" } ]