AggregationStrategy in table

Hello, i’m trying to do a custom aggregation strategy on my table. I have seen that the aggregation is workin only on the data that are dislpayed on the paginated table (es: 50 rows, 100 rows and so on…). I’d like to have the sum of all the record of the table not only the page that is showed in the table…is it possible?
Regards

Hi,

In the custom AggregationStrategy instead of using the collection of values passed to the aggregate method (which is current page items), you can obtain all items from corresponding CollectionContainer bound with your table, e.g. usersDc.getItems().

Regards,
Gleb