Pagination and Infinite Scroll in IZI CRM
Pagination and Infinite Scroll in IZI CRM
Section titled “Pagination and Infinite Scroll in IZI CRM”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.
What It Is and Why It Matters
Section titled “What It Is and Why It Matters”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.
Where It Appears
Section titled “Where It Appears”- 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
How to Use It
Section titled “How to Use It”Pagination:
- At the bottom of the table find the panel with page numbers and ”‹ ›” arrows
- Click a page number or the right arrow for the next page
- To change row count — use the nearby dropdown (25 / 50 / 100)
- The counter “Showing X–Y of Z” tells you the total records in the current query
Infinite scroll:
- Simply scroll down — new rows load automatically
- A loading spinner at the bottom means more data is being fetched
Business Value
Section titled “Business Value”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.
Related Patterns
Section titled “Related Patterns”- Table Filters — narrow the set to fit on one page
- Table Sorting — row order on each page follows the sort
- CSV/Excel Export — if you need all pages in one file
Limitations
Section titled “Limitations”- 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.