4

I am creating an application in angular6 with angular material. How to use 2 pagination in a single table. enter image description here I want to show pagination both places Header and Footer.

The header pagination only shows the "Items per page" with drop-down. The footer pagination will show arrow and all.

When I add 2 pagination the second one is not working.

Please refer screenshots enter image description here

Thanks.

Samuel Philipp
  • 9,552
  • 12
  • 27
  • 45
imjayabal
  • 527
  • 1
  • 5
  • 20

1 Answers1

4

I don't think there is an official solution for that at the moment and you have to synchronize the both paginators yourself.

Configure the first paginator as you like and add all the input params to the second one:

<mat-paginator #paginator [pageSizeOptions]="[5, 10, 20]" showFirstLastButtons></mat-paginator>

<table mat-table [dataSource]="dataSource"> <!-- ... --> </table>

<mat-paginator (page)="syncPrimaryPaginator($event)" 
  [pageSize]="paginator.pageSize" [pageIndex]="paginator.pageIndex"
  [length]="paginator.length" [pageSizeOptions]="paginator.pageSizeOptions"></mat-paginator>

In your component add a method to sync the first paginator, if the second is used:

dataSource = new MatTableDataSource<PeriodicElement>(ELEMENT_DATA);

@ViewChild(MatPaginator) paginator: MatPaginator;

ngOnInit() {
  this.dataSource.paginator = this.paginator;
}

syncPrimaryPaginator(event: PageEvent) {
  this.paginator.pageIndex = event.pageIndex;
  this.paginator.pageSize = event.pageSize;
  this.paginator.page.emit(event);
}

I forked this official example and updated it to reproduce your problem. Here is my solution.

Samuel Philipp
  • 9,552
  • 12
  • 27
  • 45
  • Thank you, Samuel P. It's working for me. One more help can I show the page numbers like bootstrap pagination instead of an arrow – imjayabal Mar 05 '19 at 10:28
  • Officially there is no option to achieve that ([docs](https://material.angular.io/components/paginator/api)). Maybe you can create your own paginator from the angular source. – Samuel Philipp Mar 05 '19 at 10:31