Question
LTIM
US
Last activity: 5 Sep 2025 16:44 EDT
Pagination for table layout
We have a table to display all the cases data. For the table layout I have given source as DPage and RD is the source for the DPage. In the RD I have enabled paging with page size as 50. So in the UI I'm not able to see the Next Previous navigation buttons. If I use the RD as the source for the table layout then I'm getting the buttons but advanced filters like Density, Refresh, Group are missing. My requirement is to show all the advanced filters and I should load 50 records per page. If anyone have any suggestions please share it with me.
@ShivatejaP17289946 Keep your table sourced from a list data page to retain the toolbar with Density, Refresh, and Group. Do not rely on paging in the report definition. Turn paging off in the RD and let it only handle columns, sorting, and filtering logic. In the Table configuration, enable Pagination, choose Paged, and set page size to 50 so Next and Previous appear. If your list is big, switch to server style paging by making the data page parameterized with pageNumber and pageSize, and pass those from the table’s pagination settings so each page reloads the data page for the next 50. Ensure the data page is not cached forever by using a sensible reload setting so paging fetches fresh slices. For search, add a toolbar search input and pass that value as a filter parameter to the data page, then use it inside the RD criteria. This setup gives you the advanced filters and true 50 per page without losing the buttons.