DatatablePagerComponent
Use this component to construct custom table footer with standard pagination.
It must be used inside the ngx-datatable-footer
Properties
canNext
canPrevious
configuration
protected readonly configuration: Signal<{
messages: {
emptyMessage: string;
totalMessage: string;
selectedMessage: string;
ariaFirstPageMessage: string;
ariaPageNMessage: string;
ariaPreviousPageMessage: string;
ariaNextPageMessage: string;
ariaLastPageMessage: string;
ariaRowCheckboxMessage: string;
ariaHeaderCheckboxMessage: string;
ariaGroupHeaderCheckboxMessage: string;
ariaLoadingMessage: string;
};
cssClasses: {
sortAscending: string;
sortDescending: string;
sortUnset: string;
pagerLeftArrow: string;
pagerRightArrow: string;
pagerPrevious: string;
pagerNext: string;
treeStatusLoading: string;
treeStatusExpanded: string;
treeStatusCollapsed: string;
};
headerHeight: NonNullable<number | "auto" | undefined>;
footerHeight: number;
rowHeight: NonNullable<number | "auto" | ((row: any) => number) | undefined>;
defaultColumnWidth: number;
}>