Angular MatPaginator not working

前端 未结 30 1557
情歌与酒
情歌与酒 2020-12-04 23:05

I have 2 components. Both have mat-table and paginators and pagination is working for one component and not working for the other component though the code is similar. Below

30条回答
  •  失恋的感觉
    2020-12-05 00:08

    A solution without using setTimeout is to use set :

    
     @ViewChild(MatPaginator) paginator: MatPaginator;
    
    
     set matPaginator(mp: MatPaginator) {
          this.paginator = mp;
          this.dataSource.paginator = this.paginator;
      }
    

提交回复
热议问题