Set Table Page
The Set Table Page action changes the current page index of a Table component.
Configuration
| Parameter | Description | Default |
|---|---|---|
| Table | The Table component to page | — |
| Page Index | Numerical value for the page index, e.g. {{2}} | — |
| Debounce | Time in milliseconds to wait before executing the action | Empty (no delay) |
Triggering via RunJS
This action isn't exposed through the actions.* RunJS API. Instead, call the Table component's own setPage component-specific action (CSA) directly:
await components.<tableName>.setPage(<pageIndex>);
info
For a full quick-reference of all actions' RunJS syntax, see Run Actions from RunJS.