Hierarchy

Hierarchy

  • IIgrPaginatorProps

Properties

children?: ReactNode
className?: string
id?: string
name?: string
overlaySettings?: IgrOverlaySettings
page?: string | number

Gets/Sets the current page of the paginator. The default is 0.

let page = this.paginator.page;

Memberof

IgxPaginatorComponent

pageChange?: ((s, e) => void)

Type declaration

paging?: ((s, e) => void)

Type declaration

pagingDone?: ((s, e) => void)

Type declaration

perPage?: string | number

Gets/Sets the number of visible items per page in the paginator. The default is 15.

let itemsPerPage = this.paginator.perPage;

Memberof

IgxPaginatorComponent

perPageChange?: ((s, e) => void)

Type declaration

resourceStrings?: IgrPaginatorResourceStrings

An accessor that sets the resource strings. By default it uses EN resources.

selectOptions?: number[]

Sets custom options in the select of the paginator

let options = this.paginator.selectOptions;

Memberof

IgxPaginatorComponent

style?: CSSProperties
totalPages?: string | number

Total pages calculated from totalRecords and perPage

totalRecords?: string | number

Sets the total records.

let totalRecords = this.paginator.totalRecords;

Memberof

IgxPaginatorComponent