Mat-table Sorting Demo not Working

后端 未结 20 2798
旧巷少年郎
旧巷少年郎 2020-12-02 10:55

I am trying to get the mat-table sorting to work locally, and while I can get the data to show up as expected, clicking on the header row does not do the sortin

20条回答
  •  醉话见心
    2020-12-02 11:20

    Adding sort within timeout block works for me,

    dataSource = new MatTableDataSource(this.articleService.getAllArticles());
    setTimeout(() => {
      this.tableDataSource.sort = this.sort;
      this.tableDataSource.paginator = this.paginator;
    });
    

    If you don't want to use lifecykle hooks.

提交回复
热议问题