For the complete documentation index, see llms.txt. This page is also available as Markdown.

Sort & limit

Sort records, set a per-view record limit, and choose how users load more.

Most views work better when records are ordered consistently β€” alphabetically by name, by most recent date, by status, and so on. And once you've got more than a few dozen records, you'll usually want to control how many appear on screen at once and how users move beyond that limit.

In this guide:

  • Sort records by a particular field (e.g. alphabetically A–Z)

  • Set a record limit for the view

  • Choose how users load more records: On scroll, Load button, or Pagination (Arrows or Numbered)

  • Read the record count in the action bar

  • Sort the order of groups when grouping records

Sorting records

Sort the view by any field on the table. Common patterns:

  • Text fields β†’ A–Z or Z–A

  • Number fields β†’ ascending or descending

  • Date fields β†’ newest or oldest first

  • Single-select fields β†’ by option order (handy for status columns)

You can add multiple sort rules; the first rule takes priority and subsequent rules act as tie-breakers.

When the view is grouped, the same sort settings apply within each group.

Record limit and loading more

Set a record limit to cap how many records load up front. The limit applies per view, or per column / group when the view is split into Kanban columns or grouped lanes.

The Loading more records selector controls how users get past that limit:

  • On scroll β€” auto-loads the next batch of records as the user scrolls towards the bottom of the view. Best for long lists where you want the experience to feel seamless.

  • Load button β€” shows a Load more button at the end of the list with a loading state. Best when you want users to opt in to loading more (for example, on slower data sources).

  • Pagination β€” splits the records into pages the user steps through using controls in the action bar. Pick one of two pagination styles:

    • Arrows β€” left/right chevrons in the action bar.

    • Numbered β€” numbered page buttons (with an ellipsis after the first few when there are many pages).

The chosen style is reflected in the action bar's pagination controls and in the record count beside them.

Record count in the action bar

The action bar always shows the count of records currently loaded versus the total available β€” for example, "Showing 25 of 240". When the view is filtered (either by an admin filter or by in-app filters), the wording switches to "Showing 25 of 87 results" so users know they're looking at a filtered total.

Choosing a default

A few rules of thumb:

  • Short, stable lists β€” set a generous limit and pick On scroll so users barely notice.

  • Large datasets where users tend to drill down β€” use Pagination so users keep a sense of where they are.

  • Heavy fields per record (images, long text, many relationships) β€” use Load button to avoid loading everything by default.

Lifting the record limit too high on very large tables disables live updates on that view, because re-rendering every record on each change becomes expensive. If you need both no limit and live updates, prefer On scroll or Load button so records load in batches.

Sorting groups

When the view is grouped by a field (see Grouping records), an extra Sort groups option appears. This controls the order of the groups themselves β€” independent of the per-record sort you've set above.

For single-select group fields, you can keep the option's own order (the order set on the field) or sort alphabetically. For other group fields, sort A–Z / Z–A or by count.

Last updated

Was this helpful?