Hello! Anyone here encounter this issue. The pagination has the correct number of items, but the table displays incorrect number of items. The other records are not visible but still counts in the pagination. What is the possible cause for this?
Hi @RD.Verify both table source and Pagination's TotalCount . Both should point same aggregate.
Regards
Krishnanand Pathak
Hello RD.,Can I get your screenshot for screen table source, Navigation\Pagination properties setting and OnPaginationNavigate action ?Thanks and Regards,Zwe
Hi RD,
Go to the Navigation properties and in the total count you can give the list count of aggregate and in the navigation action refresh your aggregate
Hi RD.,
you have a maxrecords in your screen as a local variable, your pagination widget works with this to divide up your total count of records and represent chunks of them as 'pages'.
But your aggregate or query should also effectively retrieve this amount of records. That's probably not set right in your case, my guess is that your aggregate or query has a maxrecords of 1 instead, that should be matched with the maxrecords variable in your screen.
Dorine