---
product: "AG Grid"
title: "Row Pagination"
description: "Paginate rows to remove vertical scrolling in your JavaScript Data Grid. Pagination is supported in all row models. Customise pagination and pagination controls."
framework: javascript
version: "36.2.0"
related:
    - title: "Row Data"
      url: "https://www.ag-grid.com/archive/36.2.0/javascript-data-grid/row-ids/"
    - title: "Row Sorting"
      url: "https://www.ag-grid.com/archive/36.2.0/javascript-data-grid/row-sorting/"
    - title: "Row Numbers"
      url: "https://www.ag-grid.com/archive/36.2.0/javascript-data-grid/row-numbers/"
    - title: "Row Spanning"
      url: "https://www.ag-grid.com/archive/36.2.0/javascript-data-grid/row-spanning/"
    - title: "Row Pinning"
      url: "https://www.ag-grid.com/archive/36.2.0/javascript-data-grid/row-pinning/"
    - title: "Row Height"
      url: "https://www.ag-grid.com/archive/36.2.0/javascript-data-grid/row-height/"
    - title: "Styling Rows"
      url: "https://www.ag-grid.com/archive/36.2.0/javascript-data-grid/row-styles/"
    - title: "Accessing Rows"
      url: "https://www.ag-grid.com/archive/36.2.0/javascript-data-grid/accessing-data/"
    - title: "Row Dragging"
      url: "https://www.ag-grid.com/archive/36.2.0/javascript-data-grid/row-dragging/"
    - title: "Full Width Rows"
      url: "https://www.ag-grid.com/archive/36.2.0/javascript-data-grid/full-width-rows/"
llms: "https://www.ag-grid.com/archive/36.2.0/llms.txt"
---

# Row Pagination

Pagination allows the grid to paginate rows, removing the need for a vertical scroll to view more data.

To enable pagination set the grid property `pagination=true`.

#### Client Paging

```ts
import {
  ClientSideRowModelModule,
  ColDef,
  GridApi,
  GridOptions,
  ModuleRegistry,
  PaginationModule,
  createGrid,
  enableDevValidations,
} from "ag-grid-community";
import { IOlympicData } from "./interfaces";

if (process.env.NODE_ENV !== "production") {
  // Enable extended validations only for development
  enableDevValidations();
}

ModuleRegistry.registerModules([PaginationModule, ClientSideRowModelModule]);

const columnDefs: ColDef[] = [
  {
    field: "athlete",
    minWidth: 170,
  },
  { field: "age" },
  { field: "country" },
  { field: "date" },
  { field: "total" },
];

let gridApi: GridApi<IOlympicData>;

const gridOptions: GridOptions<IOlympicData> = {
  defaultColDef: {
    flex: 1,
    minWidth: 100,
  },
  columnDefs,
  pagination: true,
};

const gridDiv = document.querySelector<HTMLElement>("#myGrid")!;
gridApi = createGrid(gridDiv, gridOptions);

fetch("https://www.ag-grid.com/example-assets/olympic-winners.json")
  .then((response) => response.json())
  .then((data: IOlympicData[]) => gridApi!.setGridOption("rowData", data));
```

[Live example: Client Paging](https://www.ag-grid.com/archive/36.2.0/examples/row-pagination/client-paging/typescript/)

## Supported Row Models

Pagination in AG Grid is supported in [all the different row models](https://www.ag-grid.com/archive/36.2.0/javascript-data-grid/row-models/). The [Client-Side Row Model](https://www.ag-grid.com/archive/36.2.0/javascript-data-grid/row-models/#client-side) (the default row model) is used for the examples on this page.

To see the specifics of pagination on the other row models check the relevant documentation for [Infinite Row Model](https://www.ag-grid.com/archive/36.2.0/javascript-data-grid/infinite-scrolling/#pagination), [Viewport Row Model](https://www.ag-grid.com/archive/36.2.0/javascript-data-grid/viewport/#example-viewport-with-pagination) and [Server-Side Row Model](https://www.ag-grid.com/archive/36.2.0/javascript-data-grid/server-side-model-pagination/).

## Styling the Pagination Panel

The height of the pagination panel defaults to the grid row height. Use the `paginationPanelHeight` [theme parameter](https://www.ag-grid.com/archive/36.2.0/javascript-data-grid/theming-parameters/) to change the height.

The pagination panel can be styled with CSS, use the class `ag-paging-panel` to target the pagination panel. Use browser developer tools to find class names for specific elements within the pagination panel.

## Pagination Panel Layout

The pagination panel is composed of built-in components that can be individually reordered or hidden via the `paginationPanels` grid option:

- `pageSize` — the page size selector dropdown.
- `rowSummary` — the row range summary (e.g. `1 to 10 of 50`).
- `pageSummary` — navigation buttons (first, previous, next, last) with an editable page number input for direct page navigation. Use `{ type: 'pageSummary', suppressPageInput: true }` to show a read-only page number instead.
- `pageNumbers` — numbered page buttons for direct navigation, with ellipses for large page counts (e.g. `1 … 9 10 11 … 51`). Opt-in: not included in the default panels.

The default order is: `['pageSize', 'rowSummary', 'pageSummary']`.

See [Example: Customising Pagination](https://www.ag-grid.com/archive/36.2.0/javascript-data-grid/row-pagination/#example-customising-pagination) for a live demonstration of reordering the pagination panels.

```js
// Render the page navigation first, then the row summary, then the page size selector
const paginationPanels = ['pageSummary', 'rowSummary', 'pageSize'];
```

> **Note**
>
> When a panel is omitted from `paginationPanels`, its accessibility announcements are also omitted.

### Suppressing the Page Input

To disable the editable page input and show a read-only page number instead, use the object form of the `pageSummary` entry with `suppressPageInput: true`:

```js
paginationPanels: [
    'rowSummary',
    { type: 'pageSummary', suppressPageInput: true },
    'pageSize',
]
```

## Number Formats

The numbers within the Paging Toolbar can be formatted in two ways:

- For thousand and decimal separator changes, customise [Localisation](https://www.ag-grid.com/archive/36.2.0/javascript-data-grid/localisation/).
- For full control over each number's rendering, use the `paginationNumberFormatter` callback — see [Example: Customising Pagination](https://www.ag-grid.com/archive/36.2.0/javascript-data-grid/row-pagination/#example-customising-pagination).

## Example: Auto Page Size

If you set `paginationAutoPageSize=true` the grid will automatically show as many rows in each page as it can fit. This is demonstrated below. Note if you resize the display area of the grid, the page size automatically changes. To view this, open the example up in a new tab and resize your browser.

#### Auto Page Size

```ts
import {
  ClientSideRowModelModule,
  ColDef,
  GridApi,
  GridOptions,
  ModuleRegistry,
  PaginationModule,
  createGrid,
  enableDevValidations,
} from "ag-grid-community";
import { IOlympicData } from "./interfaces";

if (process.env.NODE_ENV !== "production") {
  // Enable extended validations only for development
  enableDevValidations();
}

ModuleRegistry.registerModules([PaginationModule, ClientSideRowModelModule]);

const columnDefs: ColDef[] = [
  {
    field: "athlete",
    minWidth: 170,
  },
  { field: "age" },
  { field: "country" },
  { field: "date" },
  { field: "total" },
];

let gridApi: GridApi<IOlympicData>;

const gridOptions: GridOptions<IOlympicData> = {
  defaultColDef: {
    flex: 1,
    minWidth: 100,
  },
  columnDefs,
  paginationAutoPageSize: true,
  pagination: true,
};

const gridDiv = document.querySelector<HTMLElement>("#myGrid")!;
gridApi = createGrid(gridDiv, gridOptions);

fetch("https://www.ag-grid.com/example-assets/olympic-winners.json")
  .then((response) => response.json())
  .then((data: IOlympicData[]) => gridApi!.setGridOption("rowData", data));
```

[Live example: Auto Page Size](https://www.ag-grid.com/archive/36.2.0/examples/row-pagination/auto-page-size/typescript/)

> **Note**
>
> Each pagination page must have the same number of rows. If you use `paginationAutoPageSize` with auto row height or dynamic row height via the [getRowHeight()](https://www.ag-grid.com/archive/36.2.0/javascript-data-grid/row-height/#getrowheight-callback) callback, the page height will be calculated using the default row height and not the actual row heights. Therefore the rows will not fit perfectly into the page if these features are mixed.

> **Note**
>
> When `paginationAutoPageSize` is used, the grid will not show the page size dropdown selector in the pagination panel, and the option `paginationPageSizeSelector` will be ignored.

## Example: Customising Pagination

In this example the default pagination settings are changed. Note the following:

- `paginationPageSizeSelector` is set to `[200, 500, 1000]`
- `paginationPageSize` is set to `500`
- `paginationPanels` is set to `[{ type: 'pageSummary', suppressPageInput: true }, 'rowSummary', 'pageSize']` to reorder the pagination controls and suppress the page number input.
- The numbers in the pagination panel are formatted differently using the grid callback `paginationNumberFormatter` and putting the numbers into square brackets i.e. [x].
- `api.paginationGoToPage(4)` is called to go to page 4 (0 based, so the 5th page)

#### Custom Paging

```ts
import {
  ClientSideRowModelModule,
  ColDef,
  FirstDataRenderedEvent,
  GridApi,
  GridOptions,
  ModuleRegistry,
  PaginationModule,
  PaginationNumberFormatterParams,
  createGrid,
  enableDevValidations,
} from "ag-grid-community";
import { IOlympicData } from "./interfaces";

if (process.env.NODE_ENV !== "production") {
  // Enable extended validations only for development
  enableDevValidations();
}

ModuleRegistry.registerModules([PaginationModule, ClientSideRowModelModule]);

const columnDefs: ColDef[] = [
  {
    field: "athlete",
    minWidth: 170,
  },
  { field: "age" },
  { field: "country" },
  { field: "date" },
  { field: "total" },
];

let gridApi: GridApi<IOlympicData>;

const gridOptions: GridOptions<IOlympicData> = {
  defaultColDef: {
    flex: 1,
    minWidth: 100,
  },
  columnDefs,
  pagination: true,
  paginationPageSize: 500,
  paginationPageSizeSelector: [200, 500, 1000],
  paginationPanels: [
    { type: "pageSummary", suppressPageInput: true },
    "rowSummary",
    "pageSize",
  ],
  onFirstDataRendered: onFirstDataRendered,
  paginationNumberFormatter: (params: PaginationNumberFormatterParams) => {
    return "[" + params.value.toLocaleString() + "]";
  },
};

function onFirstDataRendered(params: FirstDataRenderedEvent) {
  params.api.paginationGoToPage(4);
}

const gridDiv = document.querySelector<HTMLElement>("#myGrid")!;
gridApi = createGrid(gridDiv, gridOptions);

fetch("https://www.ag-grid.com/example-assets/olympic-winners.json")
  .then((response) => response.json())
  .then(function (data) {
    gridApi!.setGridOption("rowData", data);
  });
```

[Live example: Custom Paging](https://www.ag-grid.com/archive/36.2.0/examples/row-pagination/custom-paging/typescript/)

## Example: Page Number Navigation

The `pageNumbers` panel renders a numbered button for each page, letting users jump straight to one. It is opt-in: register `PaginationPageNumbersModule` and add the panel to `paginationPanels`:

```js
import { PaginationPageNumbersModule } from 'ag-grid-community';

ModuleRegistry.registerModules([ PaginationModule, PaginationPageNumbersModule ]);

const gridOptions = {
    paginationPanels: ['pageNumbers']
}
```

The example below demonstrates page number navigation:

#### Page Number Navigation

```ts
import {
  ClientSideRowModelModule,
  ColDef,
  FirstDataRenderedEvent,
  GridApi,
  GridOptions,
  ModuleRegistry,
  PaginationModule,
  PaginationPageNumbersModule,
  ValidationModule,
  createGrid,
  enableDevValidations,
} from "ag-grid-community";
import { IOlympicData } from "./interfaces";

if (process.env.NODE_ENV !== "production") {
  // Enable extended validations only for development
  enableDevValidations();
}

ModuleRegistry.registerModules([
  PaginationModule,
  PaginationPageNumbersModule,
  ClientSideRowModelModule,
  ...(process.env.NODE_ENV !== "production" ? [ValidationModule] : []),
]);

const columnDefs: ColDef[] = [
  { field: "athlete", minWidth: 170 },
  { field: "age" },
  { field: "country" },
  { field: "date" },
  { field: "total" },
];

let gridApi: GridApi<IOlympicData>;

const gridOptions: GridOptions<IOlympicData> = {
  defaultColDef: {
    flex: 1,
    minWidth: 100,
  },
  columnDefs,
  pagination: true,
  paginationPageSize: 100,
  paginationPageSizeSelector: [50, 100, 200],
  paginationPanels: ["rowSummary", "pageNumbers", "pageSize"],
  onFirstDataRendered: onFirstDataRendered,
};

function onFirstDataRendered(params: FirstDataRenderedEvent) {
  params.api.paginationGoToPage(9);
}

const gridDiv = document.querySelector<HTMLElement>("#myGrid")!;
gridApi = createGrid(gridDiv, gridOptions);

fetch("https://www.ag-grid.com/example-assets/olympic-winners.json")
  .then((response) => response.json())
  .then(function (data) {
    gridApi!.setGridOption("rowData", data);
  });
```

[Live example: Page Number Navigation](https://www.ag-grid.com/archive/36.2.0/examples/row-pagination/page-numbers/typescript/)

## Example: Custom Pagination Controls

If you set `suppressPaginationPanel=true`, the grid will not show the standard navigation controls for pagination. This is useful if you want to provide your own navigation controls.

In the example below you can see how this works. Note that we are listening to `onPaginationChanged` to update the information about the current pagination status. We also call methods on the pagination API to change the pagination state.

The example also shows how the grid handles the case where the requested page doesn't exist. In this case, when the users requests page 50, the grid will show the last page (page 18 in this example).

A list of the API methods and events can be found in the [Pagination API section](https://www.ag-grid.com/archive/36.2.0/javascript-data-grid/row-pagination/#pagination-api).

The example also sets property `suppressScrollOnNewData=true`, which tells the grid to NOT scroll to the top when the page changes.

#### Custom Controls

```ts
import {
  ClientSideRowModelModule,
  ColDef,
  GridApi,
  GridOptions,
  ModuleRegistry,
  PaginationModule,
  createGrid,
  enableDevValidations,
} from "ag-grid-community";
import { IOlympicData } from "./interfaces";

if (process.env.NODE_ENV !== "production") {
  // Enable extended validations only for development
  enableDevValidations();
}

ModuleRegistry.registerModules([PaginationModule, ClientSideRowModelModule]);

const columnDefs: ColDef[] = [
  {
    field: "athlete",
    minWidth: 170,
  },
  { field: "age" },
  { field: "country" },
  { field: "date" },
  { field: "total" },
];

let gridApi: GridApi<IOlympicData>;

const gridOptions: GridOptions<IOlympicData> = {
  defaultColDef: {
    flex: 1,
    minWidth: 100,
  },
  paginationPageSize: 500,
  paginationPageSizeSelector: [100, 500, 1000],
  columnDefs,
  pagination: true,
  suppressPaginationPanel: true,
  suppressScrollOnNewData: true,
  onPaginationChanged: onPaginationChanged,
};

function setText(selector: string, text: any) {
  (document.querySelector(selector) as any).innerHTML = text;
}

function onPaginationChanged() {
  console.log("onPaginationPageLoaded");

  // Workaround for bug in events order
  if (gridApi!) {
    setText("#lbLastPageFound", gridApi!.paginationIsLastPageFound());
    setText("#lbPageSize", gridApi!.paginationGetPageSize());
    // we +1 to current page, as pages are zero based
    setText("#lbCurrentPage", gridApi!.paginationGetCurrentPage() + 1);
    setText("#lbTotalPages", gridApi!.paginationGetTotalPages());

    setLastButtonDisabled(!gridApi!.paginationIsLastPageFound());
  }
}

function setLastButtonDisabled(disabled: boolean) {
  (document.querySelector("#btLast") as any).disabled = disabled;
}

function onBtFirst() {
  gridApi!.paginationGoToFirstPage();
}

function onBtLast() {
  gridApi!.paginationGoToLastPage();
}

function onBtNext() {
  gridApi!.paginationGoToNextPage();
}

function onBtPrevious() {
  gridApi!.paginationGoToPreviousPage();
}

function onBtPageFive() {
  // we say page 4, as the first page is zero
  gridApi!.paginationGoToPage(4);
}

function onBtPageFifty() {
  // we say page 49, as the first page is zero
  gridApi!.paginationGoToPage(49);
}

const gridDiv = document.querySelector<HTMLElement>("#myGrid")!;
gridApi = createGrid(gridDiv, gridOptions);

fetch("https://www.ag-grid.com/example-assets/olympic-winners.json")
  .then((response) => response.json())
  .then((data: IOlympicData[]) => gridApi!.setGridOption("rowData", data));

if (typeof window !== "undefined") {
  // Attach external event handlers to window so they can be called from index.html
  (<any>window).onBtFirst = onBtFirst;
  (<any>window).onBtLast = onBtLast;
  (<any>window).onBtNext = onBtNext;
  (<any>window).onBtPrevious = onBtPrevious;
  (<any>window).onBtPageFive = onBtPageFive;
  (<any>window).onBtPageFifty = onBtPageFifty;
}
```

[Live example: Custom Controls](https://www.ag-grid.com/archive/36.2.0/examples/row-pagination/custom-controls/typescript/)

## Pagination & Child Rows

Both [Row Grouping](https://www.ag-grid.com/archive/36.2.0/javascript-data-grid/grouping/) and [Master Detail](https://www.ag-grid.com/archive/36.2.0/javascript-data-grid/master-detail/) have rows that expand. When this happens, consideration needs to be given as to how this impacts the number of rows on the page. There are two modes of operation that can be used depending on what your application requirements.

### Mode 1: Paginate Only Top Level Rows

The first mode is the default. The rows are split according to the top level rows. For example if row grouping with a page size of 10, then each page will contain 10 top level groups. When expanding a group with this mode, all children for that group, along with the 10 original groups for that page, will get displayed in one page. This will result in a page size greater than the initial page size of 10 rows.

This mode is typically best suited for Row Grouping as children are always displayed alongside the parent group. It is also typically best for Master Detail, as detail rows (that typically contain detail tables) will always appear below their master rows.

In the example below, note the following:

- Each page will always contain exactly 10 groups.
- Expanding a group will not push rows to the next page.

#### Grouping Normal

```ts
import {
  ClientSideRowModelModule,
  ColDef,
  GridApi,
  GridOptions,
  ModuleRegistry,
  PaginationModule,
  createGrid,
  enableDevValidations,
} from "ag-grid-community";
import { RowGroupingModule } from "ag-grid-enterprise";
import { IOlympicData } from "./interfaces";

if (process.env.NODE_ENV !== "production") {
  // Enable extended validations only for development
  enableDevValidations();
}

ModuleRegistry.registerModules([
  PaginationModule,
  ClientSideRowModelModule,
  RowGroupingModule,
]);

const columnDefs: ColDef[] = [
  { field: "athlete" },
  { field: "age" },
  { field: "country", rowGroup: true },
  { field: "year", rowGroup: true },
  { field: "date" },
  { field: "sport", rowGroup: true },
  { field: "gold" },
  { field: "silver" },
  { field: "bronze" },
  { field: "total" },
];

let gridApi: GridApi<IOlympicData>;

const gridOptions: GridOptions<IOlympicData> = {
  columnDefs: columnDefs,
  pagination: true,
  paginationPageSize: 10,
  paginationPageSizeSelector: [10, 20, 50, 100],
  defaultColDef: {
    flex: 1,
    minWidth: 190,
  },
};

const gridDiv = document.querySelector<HTMLElement>("#myGrid")!;
gridApi = createGrid(gridDiv, gridOptions);

fetch("https://www.ag-grid.com/example-assets/olympic-winners.json")
  .then((response) => response.json())
  .then((data: IOlympicData[]) => gridApi!.setGridOption("rowData", data));
```

[Live example: Grouping Normal](https://www.ag-grid.com/archive/36.2.0/examples/row-pagination/grouping-normal/typescript/)

### Mode 2: Paginate All Rows, Including Children

The second mode paginates all rows, including child rows when Row Grouping and detail rows with Master Detail. For example if row grouping with a page size of 10, then each page will always contain exactly 10 rows, even if it means having children appear on a page after the page containing the parent. This can be particularly confusing if the last row of a page is expanded, as the children will appear on the next page (not visible to the user unless they navigate to the next page).

This mode is typically best if the application never wants to exceed the maximum number of rows in a page past the page size. This can be helpful if designing for touch devices (e.g. tablets) where UX requirements state no scrolls should be visible in the application - paging to a strict page size can guarantee no vertical scrolls will appear.

To enable pagination on all rows, including children, set grid property `paginateChildRows=true`.

In the example below, note the following:

- Each page will always contain exactly 10 rows (not groups).
- Expanding a group will push rows to the next page to limit the total number of rows to 10.

> **Note**
>
> When `paginateChildRows=true` the Grid automatically disables Group Rows Sticky, see: [suppressGroupRowsSticky](https://www.ag-grid.com/archive/36.2.0/javascript-data-grid/grid-options/#reference-rowGrouping-suppressGroupRowsSticky).

#### Grouping Paginate Child Rows

```ts
import {
  ClientSideRowModelModule,
  ColDef,
  GridApi,
  GridOptions,
  ModuleRegistry,
  PaginationModule,
  createGrid,
  enableDevValidations,
} from "ag-grid-community";
import { RowGroupingModule } from "ag-grid-enterprise";
import { IOlympicData } from "./interfaces";

if (process.env.NODE_ENV !== "production") {
  // Enable extended validations only for development
  enableDevValidations();
}

ModuleRegistry.registerModules([
  PaginationModule,
  ClientSideRowModelModule,
  RowGroupingModule,
]);

const columnDefs: ColDef[] = [
  { field: "athlete" },
  { field: "age" },
  { field: "country", rowGroup: true },
  { field: "year", rowGroup: true },
  { field: "date" },
  { field: "sport", rowGroup: true },
  { field: "gold" },
  { field: "silver" },
  { field: "bronze" },
  { field: "total" },
];

let gridApi: GridApi<IOlympicData>;

const gridOptions: GridOptions<IOlympicData> = {
  columnDefs: columnDefs,
  pagination: true,
  paginationPageSize: 10,
  paginationPageSizeSelector: [10, 20, 50, 100],
  paginateChildRows: true,
  defaultColDef: {
    flex: 1,
    minWidth: 190,
  },
};

const gridDiv = document.querySelector<HTMLElement>("#myGrid")!;
gridApi = createGrid(gridDiv, gridOptions);

fetch("https://www.ag-grid.com/example-assets/olympic-winners.json")
  .then((response) => response.json())
  .then((data: IOlympicData[]) => gridApi!.setGridOption("rowData", data));
```

[Live example: Grouping Paginate Child Rows](https://www.ag-grid.com/archive/36.2.0/examples/row-pagination/grouping-paginate-child-rows/typescript/)

### Fallback to Mode 2

If using either of the following features, the grid will be forced to use the second mode:

- [Hide Open Parents](https://www.ag-grid.com/archive/36.2.0/javascript-data-grid/grouping-multiple-group-columns/#hiding-expanded-parent-rows)
- [Hiding Parents of Individual Rows](https://www.ag-grid.com/archive/36.2.0/javascript-data-grid/grouping-data/#hiding-parents-of-individual-rows)

This is because both of these features remove top level rows (group rows and master rows) from the displayed rows, making it impossible to paginate based on the top level rows only.

## Pagination Properties

| Property | Type | Required | Default | Description |
| --- | --- | --- | --- | --- |
| `pagination` | `boolean` |  |  |  |
| `paginationPageSize` | `number` |  |  |  |
| `paginationPageSizeSelector` | `number[] \| boolean` |  |  |  |
| `paginationPanels` | `PaginationPanel[]` |  |  |  |
| `paginationNumberFormatter` | `PaginationNumberFormatter` |  |  |  |
| `paginationAutoPageSize` | `boolean` |  |  |  |
| `paginateChildRows` | `boolean` |  |  |  |
| `suppressPaginationPanel` | `boolean` |  |  |  |

## Pagination API

> **Note**
>
> The pagination state can be saved and restored as part of [Grid State](https://www.ag-grid.com/archive/36.2.0/javascript-data-grid/grid-state/).

The following methods comprise the pagination API and are all available from `api`

| Property | Type | Required | Default | Description |
| --- | --- | --- | --- | --- |
| `paginationIsLastPageFound` | `Function` |  |  |  |
| `paginationGetPageSize` | `Function` |  |  |  |
| `paginationGetCurrentPage` | `Function` |  |  |  |
| `paginationGetTotalPages` | `Function` |  |  |  |
| `paginationGetRowCount` | `Function` |  |  |  |
| `paginationGoToPage` | `Function` |  |  |  |
| `paginationGoToNextPage` | `Function` |  |  |  |
| `paginationGoToPreviousPage` | `Function` |  |  |  |
| `paginationGoToFirstPage` | `Function` |  |  |  |
| `paginationGoToLastPage` | `Function` |  |  |  |

## Pagination Callbacks

| Property | Type | Required | Default | Description |
| --- | --- | --- | --- | --- |
| `paginationNumberFormatter` | `PaginationNumberFormatter` |  |  |  |

## Pagination Events

| Property | Type | Required | Default | Description |
| --- | --- | --- | --- | --- |
| `paginationChanged` | `PaginationChangedEvent` |  |  |  |
