Skip to main content

Pagination

Paginating a List

Written by Lenka Haringerová

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

Pagination is controlled by URL parameters:

Parameter

Name

Example

limit

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

/c/firma/adresar?limit=10

start

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

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

add-row-count=true

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

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

Did this answer your question?