I have a requirement where I need to live update the number of list items to Page\'s sub-header. I want use sap.ui.base.EventProvider
, aggregation binding, or e
If a client-side model such as JSONModel
is used (i.e. assuming all the data are already available on the client) and if the target collection is an array, a simple expression binding is sufficient:
title="{= ${myJSONModel>/myProducts}.length}"
As you can see in the above samples, when the number of items changes, the framework notifies the Expression Binding which eventually updates the property value automatically.
updateFinished
event from sap.m.ListBase
apiEspecially if the growing feature is enabled, this event comes in handy to get always the new count value which the framework assigns to the event parameter total
.
[The parameter
total
] can be used if thegrowing
property is set totrue
.
<List
growing="true"
items="{/Products}"
updateFinished=".onUpdateFinished"
>
onUpdateFinished: function(event) {
const reason = event.getParameter("reason"); // "Filter", "Sort", "Refresh", "Growing", ..
const count = event.getParameter("total"); // Do something with this $count value
// ...
},
The updateFinished
event is fired after items binding is updated and processed by the control. The event parameter "total"
provides the value of $count
that has been requested according to the operation such as filtering, sorting, etc..
change
event from sap.ui.model.Binding
apiThis event can be applied to any bindings which comes in handy especially if the control doesn't support the updateFinished
event.
someAggregation="{
path: '/Products',
events: {
change: '.onChange'
}
}"
onChange: function(event) {
const reason = event.getParameter("reason"); // See: sap.ui.model.ChangeReason
const count = event.getSource().getLength();
// ...
},
event.getSource()
returns the corresponding (List)Binding object which has the result of $count
(or $inlinecount
) stored internally. We can get that count result by calling the public API getLength()."growing"
reason included in sap.ui.model.ChangeReason. But if the control can grow, it's probably derived from the ListBase anyway which supports the updateFinished
event.If there is no list binding at all but the count value is still required, we can always send a request manually to get the count value. For this, append the system query $count
to the path in the read method:
myV2ODataModel.read("/Products/$count", {
filters: [/*...*/],
success: function(data) {
const count = +data; // "+" parses the string to number.
// ...
}.bind(this),
})
Please, take a look at the documentation topic Binding Collection Inline Count.
I will guess that "MyListModel" is your model name and inside it you have something like this:
[
{objectName: "object1"},
{objectName: "object2"},
{objectName: "object3"}
]
Then try:
<Page title="{= ${myListModel>/}.length}">