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 sets the resource strings. By default it uses EN resources.
Sets custom options in the select of the paginator
let options = this.paginator.selectOptions;
Total pages calculated from totalRecords and perPage
Sets the total records.
let totalRecords = this.paginator.totalRecords;
Paginator component description