Reload a Specific Child of a Dynamic Container
Status
Release Available | Status | Framework Name |
---|---|---|
4.1 | Current | Both MUI and Mint |
General
In a dynamic container, n number of child actors get rendered on the page based on the parent actor's record count and have the same actor name. To reload a specific child, use the following configurations:
Note:
The following configuration needs to be added under a specific action for the required child actor. When a user clicks on that action, then the required child actor will be reloaded.
Code JSON
"updates": [ { "name": "$nav.reloads.add;", "value": "selectedContactList:$parent.attr(id);" } ]
Where the "selectedContactList"
is the child actor's name but selectedContactList:$parent.attr(id);
points to a specific child actor.