Emitted after the current page is changed.
Emitted before paging is performed.
Emitted after paging is performed.
Emitted when perPage
property value of the paginator is changed.
Total pages calculated from totalRecords and perPage
Returns if the current page is the first page.
const lastPage = this.paginator.isFirstPage;
Returns if the current page is the last page.
const lastPage = this.paginator.isLastPage;
Sets custom OverlaySettings.
<igx-paginator [overlaySettings] = "customOverlaySettings"></igx-paginator>
Gets/Sets the current page of the paginator. The default is 0.
let page = this.paginator.page;
Gets/Sets the number of visible items per page in the paginator. The default is 15.
let itemsPerPage = this.paginator.perPage;
An accessor that returns the resource strings.
An accessor that sets the resource strings. By default it uses EN resources.
Sets custom options in the select of the paginator
let options = this.paginator.selectOptions;
Sets the total records.
let totalRecords = this.paginator.totalRecords;
Paginator component description
Igx Parent
IgxGridComponent, IgxTreeGridComponent, IgxHierarchicalGridComponent, IgxPivotGridComponent, *