Dynamic Parameters
The dynamic parameters are created and updated by the card. Unlike the manifest parameters the dynamic parameters are not related to the manifest processing and cannot be changed from outside the card. They are accessed by using UI5's binding syntax with a named model "parameters" (e.g. "{parameters>/visibleItems}").
Parameter | Type | Description | Since |
---|---|---|---|
visibleItems | number | Represents the number of visible items inside List, Table and Timeline cards. When the number of visible items inside the card changes, the parameter will automatically change and it will update everything that is bound to it. | 1.68 |
Examples
Using the dynamic parameter "visibleItems" inside the subtitle of the card:
{ "sap.card": { "type": "List", "header": { "title": "Some title", "subTitle": "Number of items: {parameters>/visibleItems}" }, ... } }Try it Out