Paging in React Pivot Table
10 Aug 202624 minutes to read
Paging divides the Pivot Table data into manageable pages so the component can render large datasets efficiently. The row axis (members of the row fields) and the column axis (members of the column and value fields) are paginated independently. Users navigate rows and columns page by page using the built-in pager UI or custom controls.
To enable paging, set the enablePaging property to true (type boolean, default false).
Paging can be configured at initial render using the pageSettings property, which accepts the following options:
| Property | Type | Default | Description |
|---|---|---|---|
currentRowPage |
number |
1 |
The current row page number to display. |
currentColumnPage |
number |
1 |
The current column page number to display. |
rowPageSize |
number |
10 |
The number of records displayed on each page of the row axis. |
columnPageSize |
number |
5 |
The number of records displayed on each page of the column axis. |
NOTE
The Virtualization and Paging features in the Pivot Table should not be enabled simultaneously. You can use either feature at a time, but not both together, as they are designed to handle data rendering differently and may conflict when used together.
Pager UI
When paging is enabled, a built-in pager UI appears at the bottom of the Pivot Table by default. The UI provides navigation buttons, a page-input box, and dropdowns for changing the page size on each axis.
You can change the position, visibility, compact view, and template of the row and column pagers using the pagerSettings property. The available sub-properties are summarized below:
| Property | Type | Default | Description |
|---|---|---|---|
position |
PagerPosition |
Bottom |
Places the pager UI at the Top or Bottom of the Pivot Table. |
isInversed |
boolean |
false |
When true, swaps the column pager to the left and the row pager to the right. |
enableCompactView |
boolean |
false |
When true, shows only the previous and next navigation buttons. |
showRowPager |
boolean |
true |
Shows or hides the row pager. |
showColumnPager |
boolean |
true |
Shows or hides the column pager. |
showRowPageSize |
boolean |
true |
Shows or hides the “Rows per page” dropdown. |
showColumnPageSize |
boolean |
true |
Shows or hides the “Columns per page” dropdown. |
rowPageSizes |
number[] |
[10, 50, 100, 200] |
The list of page sizes offered in the “Rows per page” dropdown. |
columnPageSizes |
number[] |
[5, 10, 20, 50, 100] |
The list of page sizes offered in the “Columns per page” dropdown. |
template |
string |
'' |
The ID of an HTML element that replaces the built-in pager UI. |
In order to see and use the pager UI, inject the
Pagermodule into the Pivot Table. ThePagermodule is shipped with the@syncfusion/ej2-react-pivotviewpackage, so no additional package install is required:
import { PivotViewComponent, Pager, Inject } from '@syncfusion/ej2-react-pivotview';
import { DataManager, WebApiAdaptor } from '@syncfusion/ej2-data';
import * as React from 'react';
function App() {
let remoteData = new DataManager({
url: 'https://bi.syncfusion.com/northwindservice/api/orders',
adaptor: new WebApiAdaptor(),
crossDomain: true
});
let dataSourceSettings = {
type: 'JSON',
dataSource: remoteData,
expandAll: true,
columns: [{ name: 'ProductName', caption: 'Product Name' }],
rows: [{ name: 'ShipCountry', caption: 'Ship Country' }, { name: 'ShipCity', caption: 'Ship City' }],
formatSettings: [{ name: 'UnitPrice', format: 'C0' }],
values: [{ name: 'Quantity' }, { name: 'UnitPrice', caption: 'Unit Price' }],
filters: []
};
let gridSettings = {
columnWidth: 120
};
let pageSettings = {
rowPageSize: 10,
columnPageSize: 5,
currentColumnPage: 1,
currentRowPage: 1
};
let pagerSettings = {
position: 'Bottom',
enableCompactView: false,
showColumnPager: true,
showRowPager: true,
columnPageSizes: [5, 10, 20, 50, 100],
rowPageSizes: [10, 50, 100, 200],
isInversed: false,
showColumnPageSize: true,
showRowPageSize: true
};
return (<PivotViewComponent id='PivotView' height={350} dataSourceSettings={dataSourceSettings} gridSettings={gridSettings} pageSettings={pageSettings} pagerSettings={pagerSettings} enablePaging={true}>
<Inject services={[Pager]}/>
</PivotViewComponent>);
};
export default App;import { PivotViewComponent, Pager, Inject, PagerSettings, PageSettings} from '@syncfusion/ej2-react-pivotview';
import { DataSourceSettingsModel } from '@syncfusion/ej2-pivotview/src/model/datasourcesettings-model';
import { DataManager, WebApiAdaptor } from '@syncfusion/ej2-data';
import * as React from 'react';
import { GridSettings } from '@syncfusion/ej2-pivotview/src/pivotview/model/gridsettings';
function App() {
let remoteData: DataManager = new DataManager({
url: 'https://bi.syncfusion.com/northwindservice/api/orders',
adaptor: new WebApiAdaptor(),
crossDomain: true
});
let gridSettings: GridSettings = {
columnWidth: 120
} as GridSettings;
let pageSettings: PageSettings = {
rowPageSize: 10,
columnPageSize: 5,
currentColumnPage: 1,
currentRowPage: 1
}
let pagerSettings: PagerSettings = {
position: 'Bottom',
enableCompactView: false,
showColumnPager: true,
showRowPager: true,
columnPageSizes: [5, 10, 20, 50, 100],
rowPageSizes: [10, 50, 100, 200],
isInversed: false,
showColumnPageSize: true,
showRowPageSize: true
}
let dataSourceSettings: DataSourceSettingsModel = {
type: 'JSON',
dataSource: remoteData,
expandAll: true,
columns: [{ name: 'ProductName', caption: 'Product Name' }],
rows: [{ name: 'ShipCountry', caption: 'Ship Country' }, { name: 'ShipCity', caption: 'Ship City' }],
formatSettings: [{ name: 'UnitPrice', format: 'C0' }],
values: [{ name: 'Quantity' }, { name: 'UnitPrice', caption: 'Unit Price' }],
filters: []
};
return (<PivotViewComponent id='PivotView' height={350} dataSourceSettings={dataSourceSettings} gridSettings={gridSettings} pageSettings={pageSettings} pagerSettings={pagerSettings} enablePaging={true}>
<Inject services={[Pager]} />
</PivotViewComponent>);
};
export default App;Show pager UI at top or bottom
The Pivot Table component lets you place the pager UI at the top or bottom of the Pivot Table by setting the position property within the pagerSettings configuration. By default the pager UI appears at the bottom; set position to 'Top' to place it above the Pivot Table.
The following example demonstrates how to configure the pager UI to appear at the top of the Pivot Table:
import { PivotViewComponent, Pager, Inject } from '@syncfusion/ej2-react-pivotview';
import { DataManager, WebApiAdaptor } from '@syncfusion/ej2-data';
import * as React from 'react';
function App() {
let remoteData = new DataManager({
url: 'https://bi.syncfusion.com/northwindservice/api/orders',
adaptor: new WebApiAdaptor(),
crossDomain: true
});
let dataSourceSettings = {
type: 'JSON',
dataSource: remoteData,
expandAll: true,
columns: [{ name: 'ProductName', caption: 'Product Name' }],
rows: [{ name: 'ShipCountry', caption: 'Ship Country' }, { name: 'ShipCity', caption: 'Ship City' }],
formatSettings: [{ name: 'UnitPrice', format: 'C0' }],
values: [{ name: 'Quantity' }, { name: 'UnitPrice', caption: 'Unit Price' }],
filters: []
};
let gridSettings = {
columnWidth: 120
};
let pageSettings = {
rowPageSize: 10,
columnPageSize: 5,
currentColumnPage: 1,
currentRowPage: 1
};
let pagerSettings = {
position: 'Top'
};
return (<PivotViewComponent id='PivotView' height={350} dataSourceSettings={dataSourceSettings} gridSettings={gridSettings} pageSettings={pageSettings} pagerSettings={pagerSettings} enablePaging={true}>
<Inject services={[Pager]}/>
</PivotViewComponent>);
};
export default App;import { PivotViewComponent, Pager, Inject, PagerSettings, PageSettings} from '@syncfusion/ej2-react-pivotview';
import { DataSourceSettingsModel } from '@syncfusion/ej2-pivotview/src/model/datasourcesettings-model';
import { DataManager, WebApiAdaptor } from '@syncfusion/ej2-data';
import * as React from 'react';
import { GridSettings } from '@syncfusion/ej2-pivotview/src/pivotview/model/gridsettings';
function App() {
let remoteData: DataManager = new DataManager({
url: 'https://bi.syncfusion.com/northwindservice/api/orders',
adaptor: new WebApiAdaptor(),
crossDomain: true
});
let dataSourceSettings: DataSourceSettingsModel = {
type: 'JSON',
dataSource: remoteData,
expandAll: true,
columns: [{ name: 'ProductName', caption: 'Product Name' }],
rows: [{ name: 'ShipCountry', caption: 'Ship Country' }, { name: 'ShipCity', caption: 'Ship City' }],
formatSettings: [{ name: 'UnitPrice', format: 'C0' }],
values: [{ name: 'Quantity' }, { name: 'UnitPrice', caption: 'Unit Price' }],
filters: []
};
let gridSettings: GridSettings = {
columnWidth: 120
} as GridSettings;
let pageSettings: PageSettings = {
rowPageSize: 10,
columnPageSize: 5,
currentColumnPage: 1,
currentRowPage: 1
};
let pagerSettings: PagerSettings = {
position: 'Top'
};
return (<PivotViewComponent id='PivotView' height={350} dataSourceSettings={dataSourceSettings} gridSettings={gridSettings} pageSettings={pageSettings} pagerSettings={pagerSettings} enablePaging={true}>
<Inject services={[Pager]} />
</PivotViewComponent>);
};
export default App;Inverse pager
By default, the row pager appears on the left side of the pager UI and the column pager on the right. To swap these positions, set the isInversed property to true within the pagerSettings configuration.
import { PivotViewComponent, Pager, Inject } from '@syncfusion/ej2-react-pivotview';
import { DataManager, WebApiAdaptor } from '@syncfusion/ej2-data';
import * as React from 'react';
function App() {
let remoteData = new DataManager({
url: 'https://bi.syncfusion.com/northwindservice/api/orders',
adaptor: new WebApiAdaptor(),
crossDomain: true
});
let dataSourceSettings = {
type: 'JSON',
dataSource: remoteData,
expandAll: true,
columns: [{ name: 'ProductName', caption: 'Product Name' }],
rows: [{ name: 'ShipCountry', caption: 'Ship Country' }, { name: 'ShipCity', caption: 'Ship City' }],
formatSettings: [{ name: 'UnitPrice', format: 'C0' }],
values: [{ name: 'Quantity' }, { name: 'UnitPrice', caption: 'Unit Price' }],
filters: []
};
let gridSettings = {
columnWidth: 120
};
let pageSettings = {
rowPageSize: 10,
columnPageSize: 5,
currentColumnPage: 1,
currentRowPage: 1
};
let pagerSettings = {
isInversed: true
};
return (<PivotViewComponent id='PivotView' height={350} dataSourceSettings={dataSourceSettings} gridSettings={gridSettings} pageSettings={pageSettings} pagerSettings={pagerSettings} enablePaging={true}>
<Inject services={[Pager]}/>
</PivotViewComponent>);
};
export default App;import { PivotViewComponent, Pager, Inject, PagerSettings, PageSettings} from '@syncfusion/ej2-react-pivotview';
import { DataSourceSettingsModel } from '@syncfusion/ej2-pivotview/src/model/datasourcesettings-model';
import { DataManager, WebApiAdaptor } from '@syncfusion/ej2-data';
import * as React from 'react';
import { GridSettings } from '@syncfusion/ej2-pivotview/src/pivotview/model/gridsettings';
function App() {
let remoteData: DataManager = new DataManager({
url: 'https://bi.syncfusion.com/northwindservice/api/orders',
adaptor: new WebApiAdaptor(),
crossDomain: true
});
let dataSourceSettings: DataSourceSettingsModel = {
type: 'JSON',
dataSource: remoteData,
expandAll: true,
columns: [{ name: 'ProductName', caption: 'Product Name' }],
rows: [{ name: 'ShipCountry', caption: 'Ship Country' }, { name: 'ShipCity', caption: 'Ship City' }],
formatSettings: [{ name: 'UnitPrice', format: 'C0' }],
values: [{ name: 'Quantity' }, { name: 'UnitPrice', caption: 'Unit Price' }],
filters: []
};
let gridSettings: GridSettings = {
columnWidth: 120
} as GridSettings;
let pageSettings: PageSettings = {
rowPageSize: 10,
columnPageSize: 5,
currentColumnPage: 1,
currentRowPage: 1
};
let pagerSettings: PagerSettings = {
isInversed: true
};
return (<PivotViewComponent id='PivotView' height={350} dataSourceSettings={dataSourceSettings} gridSettings={gridSettings} pageSettings={pageSettings} pagerSettings={pagerSettings} enablePaging={true}>
<Inject services={[Pager]} />
</PivotViewComponent>);
};
export default App;Compact view
The Pivot Table provides a compact view for the pager UI, displaying only the previous and next navigation buttons to minimize the interface. To enable the compact view, set the enableCompactView property to true within the pagerSettings configuration. This streamlined layout focuses on essential navigation controls, which is ideal for layouts requiring a simplified paging experience.
import { PivotViewComponent, Pager, Inject } from '@syncfusion/ej2-react-pivotview';
import { DataManager, WebApiAdaptor } from '@syncfusion/ej2-data';
import * as React from 'react';
function App() {
let remoteData = new DataManager({
url: 'https://bi.syncfusion.com/northwindservice/api/orders',
adaptor: new WebApiAdaptor(),
crossDomain: true
});
let dataSourceSettings = {
type: 'JSON',
dataSource: remoteData,
expandAll: true,
columns: [{ name: 'ProductName', caption: 'Product Name' }],
rows: [{ name: 'ShipCountry', caption: 'Ship Country' }, { name: 'ShipCity', caption: 'Ship City' }],
formatSettings: [{ name: 'UnitPrice', format: 'C0' }],
values: [{ name: 'Quantity' }, { name: 'UnitPrice', caption: 'Unit Price' }],
filters: []
};
let gridSettings = {
columnWidth: 120
};
let pageSettings = {
rowPageSize: 10,
columnPageSize: 5,
currentColumnPage: 1,
currentRowPage: 1
};
let pagerSettings = {
enableCompactView: true
};
return (<PivotViewComponent id='PivotView' height={350} dataSourceSettings={dataSourceSettings} gridSettings={gridSettings} pageSettings={pageSettings} pagerSettings={pagerSettings} enablePaging={true}>
<Inject services={[Pager]}/>
</PivotViewComponent>);
};
export default App;import { PivotViewComponent, Pager, Inject, PagerSettings, PageSettings} from '@syncfusion/ej2-react-pivotview';
import { DataSourceSettingsModel } from '@syncfusion/ej2-pivotview/src/model/datasourcesettings-model';
import { DataManager, WebApiAdaptor } from '@syncfusion/ej2-data';
import * as React from 'react';
import { GridSettings } from '@syncfusion/ej2-pivotview/src/pivotview/model/gridsettings';
function App() {
let remoteData: DataManager = new DataManager({
url: 'https://bi.syncfusion.com/northwindservice/api/orders',
adaptor: new WebApiAdaptor(),
crossDomain: true
});
let dataSourceSettings: DataSourceSettingsModel = {
type: 'JSON',
dataSource: remoteData,
expandAll: true,
columns: [{ name: 'ProductName', caption: 'Product Name' }],
rows: [{ name: 'ShipCountry', caption: 'Ship Country' }, { name: 'ShipCity', caption: 'Ship City' }],
formatSettings: [{ name: 'UnitPrice', format: 'C0' }],
values: [{ name: 'Quantity' }, { name: 'UnitPrice', caption: 'Unit Price' }],
filters: []
};
let gridSettings: GridSettings = {
columnWidth: 120
} as GridSettings;
let pageSettings: PageSettings = {
rowPageSize: 10,
columnPageSize: 5,
currentColumnPage: 1,
currentRowPage: 1
};
let pagerSettings: PagerSettings = {
enableCompactView: true
};
return (<PivotViewComponent id='PivotView' height={350} dataSourceSettings={dataSourceSettings} gridSettings={gridSettings} pageSettings={pageSettings} pagerSettings={pagerSettings} enablePaging={true}>
<Inject services={[Pager]} />
</PivotViewComponent>);
};
export default App;Show or hide paging option
The Pivot Table allows you to control the visibility of the row and column pagers in the pager UI using the showRowPager and showColumnPager properties within the pagerSettings configuration. By default, both row and column pagers are visible in the pager UI. To hide either the row pager or the column pager, set the corresponding property to false. This allows you to display only the necessary navigation controls based on your layout requirements.
The following code demonstrates how to hide the row pager by setting the showRowPager property to false:
import { PivotViewComponent, Pager, Inject } from '@syncfusion/ej2-react-pivotview';
import { DataManager, WebApiAdaptor } from '@syncfusion/ej2-data';
import * as React from 'react';
function App() {
let remoteData = new DataManager({
url: 'https://bi.syncfusion.com/northwindservice/api/orders',
adaptor: new WebApiAdaptor(),
crossDomain: true
});
let dataSourceSettings = {
type: 'JSON',
dataSource: remoteData,
expandAll: true,
columns: [{ name: 'ProductName', caption: 'Product Name' }],
rows: [{ name: 'ShipCountry', caption: 'Ship Country' }, { name: 'ShipCity', caption: 'Ship City' }],
formatSettings: [{ name: 'UnitPrice', format: 'C0' }],
values: [{ name: 'Quantity' }, { name: 'UnitPrice', caption: 'Unit Price' }],
filters: []
};
let gridSettings = {
columnWidth: 120
};
let pageSettings = {
rowPageSize: 10,
columnPageSize: 5,
currentColumnPage: 1,
currentRowPage: 1
};
let pagerSettings = {
showRowPager: false
};
return (<PivotViewComponent id='PivotView' height={350} dataSourceSettings={dataSourceSettings} gridSettings={gridSettings} pageSettings={pageSettings} pagerSettings={pagerSettings} enablePaging={true}>
<Inject services={[Pager]}/>
</PivotViewComponent>);
};
export default App;import { PivotViewComponent, Pager, Inject, PagerSettings, PageSettings} from '@syncfusion/ej2-react-pivotview';
import { DataSourceSettingsModel } from '@syncfusion/ej2-pivotview/src/model/datasourcesettings-model';
import { DataManager, WebApiAdaptor } from '@syncfusion/ej2-data';
import * as React from 'react';
import { GridSettings } from '@syncfusion/ej2-pivotview/src/pivotview/model/gridsettings';
function App() {
let remoteData: DataManager = new DataManager({
url: 'https://bi.syncfusion.com/northwindservice/api/orders',
adaptor: new WebApiAdaptor(),
crossDomain: true
});
let dataSourceSettings: DataSourceSettingsModel = {
type: 'JSON',
dataSource: remoteData,
expandAll: true,
columns: [{ name: 'ProductName', caption: 'Product Name' }],
rows: [{ name: 'ShipCountry', caption: 'Ship Country' }, { name: 'ShipCity', caption: 'Ship City' }],
formatSettings: [{ name: 'UnitPrice', format: 'C0' }],
values: [{ name: 'Quantity' }, { name: 'UnitPrice', caption: 'Unit Price' }],
filters: []
};
let gridSettings: GridSettings = {
columnWidth: 120
} as GridSettings;
let pageSettings: PageSettings = {
rowPageSize: 10,
columnPageSize: 5,
currentColumnPage: 1,
currentRowPage: 1
};
let pagerSettings: PagerSettings = {
showRowPager: false
};
return (<PivotViewComponent id='PivotView' height={350} dataSourceSettings={dataSourceSettings} gridSettings={gridSettings} pageSettings={pageSettings} pagerSettings={pagerSettings} enablePaging={true}>
<Inject services={[Pager]} />
</PivotViewComponent>);
};
export default App;Show or hide page size
The Pivot Table allows you to control the visibility of the “Rows per page” and “Columns per page” dropdowns in the pager UI using the showRowPageSize and showColumnPageSize properties within the pagerSettings configuration. These dropdowns display a list of predefined or user-defined page sizes, enabling you to adjust the number of rows or columns displayed per page at runtime. By default, both dropdowns are visible in the pager UI. To hide either the “Rows per page” or “Columns per page” dropdown, set the corresponding property to false.
import { PivotViewComponent, Pager, Inject } from '@syncfusion/ej2-react-pivotview';
import { DataManager, WebApiAdaptor } from '@syncfusion/ej2-data';
import * as React from 'react';
function App() {
let remoteData = new DataManager({
url: 'https://bi.syncfusion.com/northwindservice/api/orders',
adaptor: new WebApiAdaptor(),
crossDomain: true
});
let dataSourceSettings = {
type: 'JSON',
dataSource: remoteData,
expandAll: true,
columns: [{ name: 'ProductName', caption: 'Product Name' }],
rows: [{ name: 'ShipCountry', caption: 'Ship Country' }, { name: 'ShipCity', caption: 'Ship City' }],
formatSettings: [{ name: 'UnitPrice', format: 'C0' }],
values: [{ name: 'Quantity' }, { name: 'UnitPrice', caption: 'Unit Price' }],
filters: []
};
let gridSettings = {
columnWidth: 120
};
let pageSettings = {
rowPageSize: 10,
columnPageSize: 5,
currentColumnPage: 1,
currentRowPage: 1
};
let pagerSettings = {
showColumnPageSize: false,
showRowPageSize: false
};
return (<PivotViewComponent id='PivotView' height={350} dataSourceSettings={dataSourceSettings} gridSettings={gridSettings} pageSettings={pageSettings} pagerSettings={pagerSettings} enablePaging={true}>
<Inject services={[Pager]}/>
</PivotViewComponent>);
};
export default App;import { PivotViewComponent, Pager, Inject, PagerSettings, PageSettings} from '@syncfusion/ej2-react-pivotview';
import { DataSourceSettingsModel } from '@syncfusion/ej2-pivotview/src/model/datasourcesettings-model';
import { DataManager, WebApiAdaptor } from '@syncfusion/ej2-data';
import * as React from 'react';
import { GridSettings } from '@syncfusion/ej2-pivotview/src/pivotview/model/gridsettings';
function App() {
let remoteData: DataManager = new DataManager({
url: 'https://bi.syncfusion.com/northwindservice/api/orders',
adaptor: new WebApiAdaptor(),
crossDomain: true
});
let dataSourceSettings: DataSourceSettingsModel = {
type: 'JSON',
dataSource: remoteData,
expandAll: true,
columns: [{ name: 'ProductName', caption: 'Product Name' }],
rows: [{ name: 'ShipCountry', caption: 'Ship Country' }, { name: 'ShipCity', caption: 'Ship City' }],
formatSettings: [{ name: 'UnitPrice', format: 'C0' }],
values: [{ name: 'Quantity' }, { name: 'UnitPrice', caption: 'Unit Price' }],
filters: []
};
let gridSettings: GridSettings = {
columnWidth: 120
} as GridSettings;
let pageSettings: PageSettings = {
rowPageSize: 10,
columnPageSize: 5,
currentColumnPage: 1,
currentRowPage: 1
};
let pagerSettings: PagerSettings = {
showColumnPageSize: false,
showRowPageSize: false
};
return (<PivotViewComponent id='PivotView' height={350} dataSourceSettings={dataSourceSettings} gridSettings={gridSettings} pageSettings={pageSettings} pagerSettings={pagerSettings} enablePaging={true}>
<Inject services={[Pager]} />
</PivotViewComponent>);
};
export default App;Customize page size
The Pivot Table allows you to specify a list of page sizes for the “Rows per page” and “Columns per page” dropdowns in the pager UI using the rowPageSizes and columnPageSizes properties within the pagerSettings configuration. By default, the “Rows per page” dropdown includes page sizes of 10, 50, 100, and 200, while the “Columns per page” dropdown includes page sizes of 5, 10, 20, 50, and 100. To define a different set of page sizes, assign an array of numbers to the rowPageSizes or columnPageSizes properties.
The following example sets the “Rows per page” dropdown with page sizes of 10, 20, 30, 40, and 50, and the “Columns per page” dropdown with page sizes of 5, 10, 15, 20, and 30:
import { PivotViewComponent, Pager, Inject } from '@syncfusion/ej2-react-pivotview';
import { DataManager, WebApiAdaptor } from '@syncfusion/ej2-data';
import * as React from 'react';
function App() {
let remoteData = new DataManager({
url: 'https://bi.syncfusion.com/northwindservice/api/orders',
adaptor: new WebApiAdaptor(),
crossDomain: true
});
let dataSourceSettings = {
type: 'JSON',
dataSource: remoteData,
expandAll: true,
columns: [{ name: 'ProductName', caption: 'Product Name' }],
rows: [{ name: 'ShipCountry', caption: 'Ship Country' }, { name: 'ShipCity', caption: 'Ship City' }],
formatSettings: [{ name: 'UnitPrice', format: 'C0' }],
values: [{ name: 'Quantity' }, { name: 'UnitPrice', caption: 'Unit Price' }],
filters: []
};
let gridSettings = {
columnWidth: 120
};
let pageSettings = {
rowPageSize: 10,
columnPageSize: 5,
currentColumnPage: 1,
currentRowPage: 1
};
let pagerSettings = {
columnPageSizes: [5, 10, 15, 20, 30],
rowPageSizes: [10, 20, 30, 40, 50]
};
return (<PivotViewComponent id='PivotView' height={350} dataSourceSettings={dataSourceSettings} gridSettings={gridSettings} pageSettings={pageSettings} pagerSettings={pagerSettings} enablePaging={true}>
<Inject services={[Pager]}/>
</PivotViewComponent>);
};
export default App;import { PivotViewComponent, Pager, Inject, PagerSettings, PageSettings } from '@syncfusion/ej2-react-pivotview';
import { DataSourceSettingsModel } from '@syncfusion/ej2-pivotview/src/model/datasourcesettings-model';
import { DataManager, WebApiAdaptor } from '@syncfusion/ej2-data';
import * as React from 'react';
import { GridSettings } from '@syncfusion/ej2-pivotview/src/pivotview/model/gridsettings';
function App() {
let remoteData: DataManager = new DataManager({
url: 'https://bi.syncfusion.com/northwindservice/api/orders',
adaptor: new WebApiAdaptor(),
crossDomain: true
});
let dataSourceSettings: DataSourceSettingsModel = {
type: 'JSON',
dataSource: remoteData,
expandAll: true,
columns: [{ name: 'ProductName', caption: 'Product Name' }],
rows: [{ name: 'ShipCountry', caption: 'Ship Country' }, { name: 'ShipCity', caption: 'Ship City' }],
formatSettings: [{ name: 'UnitPrice', format: 'C0' }],
values: [{ name: 'Quantity' }, { name: 'UnitPrice', caption: 'Unit Price' }],
filters: []
};
let gridSettings: GridSettings = {
columnWidth: 120
} as GridSettings;
let pageSettings: PageSettings = {
rowPageSize: 10,
columnPageSize: 5,
currentColumnPage: 1,
currentRowPage: 1
};
let pagerSettings: PagerSettings = {
columnPageSizes: [5, 10, 15, 20, 30],
rowPageSizes: [10, 20, 30, 40, 50]
};
return (<PivotViewComponent id='PivotView' height={350} dataSourceSettings={dataSourceSettings} gridSettings={gridSettings} pageSettings={pageSettings} pagerSettings={pagerSettings} enablePaging={true}>
<Inject services={[Pager]} />
</PivotViewComponent>);
};
export default App;Template
The Pivot Table allows you to define a custom layout for the pager UI using the template property within the pagerSettings configuration. By default, the pager UI displays built-in navigation controls. To replace these with custom HTML elements, assign the ID of the custom elements to the template property. This enables you to create a unique pager interface that aligns with your application’s design requirements.
The custom template element must exist in the DOM. Add the following to your public/index.html (or equivalent):
<div id="row-pager-template"></div>
<div id="column-pager-template"></div>The following example shows how to create a custom template for both row and column pagers. The HTML element IDs are assigned to the template property. Then, during the dataBound event, the standalone Syncfusion Pager control from @syncfusion/ej2-react-pagers is appended to the designated HTML elements. You can configure the pager by setting properties like pageSize, totalRecordsCount, and currentPage. When you click on a custom row or column pager, the currentRowPage and currentColumnPage properties in pageSettings are updated, enabling navigation with the custom pager.
import { PivotViewComponent, Pager, Inject } from '@syncfusion/ej2-react-pivotview';
import { DataManager, WebApiAdaptor } from '@syncfusion/ej2-data';
import { isNullOrUndefined } from '@syncfusion/ej2-base';
import { Pager as GridPager } from '@syncfusion/ej2-grids';
import * as React from 'react';
function App() {
let pivotObj;
let remoteData = new DataManager({
url: 'https://bi.syncfusion.com/northwindservice/api/orders',
adaptor: new WebApiAdaptor(),
crossDomain: true
});
let dataSourceSettings = {
type: 'JSON',
dataSource: remoteData,
expandAll: true,
columns: [{ name: 'ProductName', caption: 'Product Name' }],
rows: [{ name: 'ShipCountry', caption: 'Ship Country' }, { name: 'ShipCity', caption: 'Ship City' }],
formatSettings: [{ name: 'UnitPrice', format: 'C0' }],
values: [{ name: 'Quantity' }, { name: 'UnitPrice', caption: 'Unit Price' }],
filters: []
};
let rowPager;
let columnPager;
let gridSettings = {
columnWidth: 120
};
let pageSettings = {
rowPageSize: 10,
columnPageSize: 5,
currentColumnPage: 1,
currentRowPage: 1
};
let pagerSettings = {
template: '#template'
};
function dataBound() {
updateTemplate();
}
function updateTemplate() {
if (!isNullOrUndefined(rowPager)) {
rowPager.destroy();
rowPager = null;
}
rowPager = new GridPager({
pageSize: pivotObj.pageSettings.rowPageSize,
totalRecordsCount: pivotObj.engineModule.rowCount,
currentPage: pivotObj.pageSettings.currentRowPage,
pageCount: 5,
click: rowPageClick
});
rowPager.appendTo('#row-pager');
if (!isNullOrUndefined(columnPager)) {
columnPager.destroy();
columnPager = null;
}
columnPager = new GridPager({
pageSize: pivotObj.pageSettings.columnPageSize,
totalRecordsCount: pivotObj.engineModule.columnCount,
currentPage: pivotObj.pageSettings.currentColumnPage,
pageCount: 5,
click: columnPageClick
});
columnPager.appendTo('#column-pager');
}
function rowPageClick(args) {
pivotObj.pageSettings.currentRowPage = args.currentPage;
}
function columnPageClick(args) {
pivotObj.pageSettings.currentColumnPage = args.currentPage;
}
return (
<div>
<PivotViewComponent
ref={d => (pivotObj = d)}
id='PivotView'
height={350}
dataSourceSettings={dataSourceSettings}
gridSettings={gridSettings}
pageSettings={pageSettings}
pagerSettings={pagerSettings}
enablePaging={true}
dataBound={dataBound.bind(this)}
>
<Inject services={[Pager]} />
</PivotViewComponent>
<script id="template" type="text/x-template">
<div class="pager-label">Row Pager: </div>
<div id="row-pager" class="e-pagertemplate"></div>
<div class="pager-label">Column Pager: </div>
<div id="column-pager" class="e-pagertemplate"></div>
</script>
</div>
);
}
export default App;import { PivotViewComponent, Pager, Inject, PagerSettings, PageSettings } from '@syncfusion/ej2-react-pivotview';
import { DataSourceSettingsModel } from '@syncfusion/ej2-pivotview/src/model/datasourcesettings-model';
import { DataManager, WebApiAdaptor } from '@syncfusion/ej2-data';
import { isNullOrUndefined } from '@syncfusion/ej2-base';
import { Pager as GridPager } from '@syncfusion/ej2-grids';
import * as React from 'react';
import { GridSettings } from '@syncfusion/ej2-pivotview/src/pivotview/model/gridsettings';
function App() {
let pivotObj: PivotViewComponent;
let remoteData: DataManager = new DataManager({
url: 'https://bi.syncfusion.com/northwindservice/api/orders',
adaptor: new WebApiAdaptor(),
crossDomain: true
});
let dataSourceSettings: DataSourceSettingsModel = {
type: 'JSON',
dataSource: remoteData,
expandAll: true,
columns: [{ name: 'ProductName', caption: 'Product Name' }],
rows: [{ name: 'ShipCountry', caption: 'Ship Country' }, { name: 'ShipCity', caption: 'Ship City' }],
formatSettings: [{ name: 'UnitPrice', format: 'C0' }],
values: [{ name: 'Quantity' }, { name: 'UnitPrice', caption: 'Unit Price' }],
filters: []
};
let rowPager: GridPager;
let columnPager: GridPager;
let gridSettings: GridSettings = {
columnWidth: 120
} as GridSettings;
let pageSettings: PageSettings = {
rowPageSize: 10,
columnPageSize: 5,
currentColumnPage: 1,
currentRowPage: 1
};
let pagerSettings: PagerSettings = {
template: '#template'
};
function dataBound() {
updateTemplate();
}
function updateTemplate() {
if (!isNullOrUndefined(rowPager)) {
rowPager.destroy();
rowPager = null;
}
rowPager = new GridPager({
pageSize: pivotObj.pageSettings.rowPageSize,
totalRecordsCount: pivotObj.engineModule.rowCount,
currentPage: pivotObj.pageSettings.currentRowPage,
pageCount: 5,
click: rowPageClick
});
rowPager.appendTo('#row-pager');
if (!isNullOrUndefined(columnPager)) {
columnPager.destroy();
columnPager = null;
}
columnPager = new GridPager({
pageSize: pivotObj.pageSettings.columnPageSize,
totalRecordsCount: pivotObj.engineModule.columnCount,
currentPage: pivotObj.pageSettings.currentColumnPage,
pageCount: 5,
click: columnPageClick
});
columnPager.appendTo('#column-pager');
}
function rowPageClick(args: any) {
pivotObj.pageSettings.currentRowPage = args.currentPage;
}
function columnPageClick(args: any) {
pivotObj.pageSettings.currentColumnPage = args.currentPage;
}
return (
<div>
<PivotViewComponent
ref={(d: PivotViewComponent) => (pivotObj = d)}
id='PivotView'
height={350}
dataSourceSettings={dataSourceSettings}
gridSettings={gridSettings}
pageSettings={pageSettings}
pagerSettings={pagerSettings}
enablePaging={true}
dataBound={dataBound.bind(this)}
>
<Inject services={[Pager]} />
</PivotViewComponent>
<script id="template" type="text/x-template">
<div className="pager-label">Row Pager: </div>
<div id="row-pager" className="e-pagertemplate"></div>
<div className="pager-label">Column Pager: </div>
<div id="column-pager" className="e-pagertemplate"></div>
</script>
</div>
);
}
export default App;