Skip to content

Pagination and Infinite Scroll in IZI CRM

Published: · IZI Team

When a table has hundreds or thousands of rows, CRM splits them into pages or loads them as you scroll. This keeps loading fast and the interface responsive.

Loading 10,000 transactions at once is slow and unwieldy. Pagination shows 25–100 rows at a time with page navigation buttons. Infinite scroll works differently: the next batch of rows loads automatically when you reach the bottom — no explicit pages.

For working with data both approaches are equivalent — the full dataset is accessible, just in chunks.

  • Transactions — pagination, typically 50 rows per page
  • Clients — pagination with rows-per-page selector
  • Shift history — pagination
  • Hall (devices in list view) — infinite scroll or fixed list depending on count
  • Product catalog — pagination or scroll depending on item count

Pagination:

  1. At the bottom of the table find the panel with page numbers and ”‹ ›” arrows
  2. Click a page number or the right arrow for the next page
  3. To change row count — use the nearby dropdown (25 / 50 / 100)
  4. The counter “Showing X–Y of Z” tells you the total records in the current query

Infinite scroll:

  1. Simply scroll down — new rows load automatically
  2. A loading spinner at the bottom means more data is being fetched

Understanding pagination is important for correctly reading data. If you see 50 transactions and think “only 50 operations happened today” — check the counter. It might say “Showing 1–50 of 340” — meaning 340 actual operations, you’re just seeing page one.

  • Using the browser back button returns you to page 1, not the page you were on
  • “Rows per page” setting does not persist between sessions
  • In infinite scroll sections you can’t jump to “page 10” directly — only scroll down to reach it

Frequently asked questions

How do I change the number of rows per page?

Find the dropdown at the bottom of the table — usually 25, 50, 100 rows options. Select what you need. The setting resets on page refresh.

Does export include all pages or only the current one?

CSV export includes all data for the selected period and filters — regardless of the current pagination page. You always get the complete set.

How do I jump to the last page directly?

In the pagination bar at the bottom click the double-arrow button ›› or the last page number if visible. Or type the page number directly in the input field if one exists.

Do filters and sorting reset when I change pages?

No, filters and sorting persist when navigating between pages. It's part of the same query — the page changes, the conditions stay.