Skip to main content

Pagination

Pagination of a List

Written by Lenka Haringerová

To improve the performance of web applications, a "pagination" system is commonly used. The list is split into pages that are displayed to the user, who can then switch between them.

Pagination is controlled by URL parameters

Parameter

Name

Example

limit

Maximum number of records per page. The default is 20. The value 0 returns all records without limit.

/c/firma/adresar?limit=10

start

How many records to skip. It is independent of the limit parameter.

/c/firma/adresar?limit=10&start=4

add-row-count=true

If you include this parameter, the number of records in the given record list (taking any applied filters into account) will be added to the XML/JSON export.

/c/firma/adresar.xml?add-row-count=true

ℹ️ If you only need to find out the number of records, combine add-row-count=true with a small limit — there's no need to load the entire record list.

Did this answer your question?