Angular matSort does not sort

后端 未结 8 1767
深忆病人
深忆病人 2020-12-09 03:07

I\'m having trouble with importing matSort into my matTable.

I\'m providing you with my code:

dashboard.component.ts



        
8条回答
  •  青春惊慌失措
    2020-12-09 03:30

    I had the same issue and fixed it by adding below:

    @ViewChild(MatSort) set matSort(ms: MatSort) {
    this.sort = ms;
    this.setDataSourceAttributes();
     }
    
    @ViewChild(MatPaginator) set matPaginator(mp: MatPaginator) {
     this.paginator = mp;
    this.setDataSourceAttributes();
     }
    
    setDataSourceAttributes() {
      this.dataSource.paginator = this.paginator;
      this.dataSource.sort = this.sort;
      }
    

提交回复
热议问题