Hierarchy

Hierarchy

Properties

children?: ReactNode
className?: string
displayDensity?: string | DisplayDensity

Returns the theme of the component. The default theme is comfortable. Available options are comfortable, cosy, compact.

let componentTheme = this.component.displayDensity;
id?: string
name?: string
onDensityChanged?: ((s, e) => void)
overlaySettings?: IgrOverlaySettings
page?: string | number

An

Input

property, sets current page of the IgxPaginatorComponent. The default is 0.

let page = this.paginator.page;

Memberof

IgxPaginatorComponent

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

Type declaration

    • (s, e): void
    • Parameters

      Returns void

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

Type declaration

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

Type declaration

perPage?: string | number

An

Input

property, sets number of visible items per page in the IgxPaginatorComponent. The default is 15.

let itemsPerPage = this.paginator.perPage;

Memberof

IgxPaginatorComponent

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

Type declaration

    • (s, e): void
    • Parameters

      Returns void

resourceStrings?: IgrPaginatorResourceStrings

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

selectOptions?: number[]

An

Input

property that 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

An

Input

property that sets the total records.

let totalRecords = this.paginator.totalRecords;

Memberof

IgxPaginatorComponent