Mat-table Sorting Demo not Working

后端 未结 20 2783
旧巷少年郎
旧巷少年郎 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:27

    There were 2 issues for me.

    1. The matColumnDef and matCellDef -> names are different
    2. I was getting the data from the service. The ngOnInit sort was not working. Replaced with

      ngAfterViewInit() { this.dataSource.sort = this.sort; }

提交回复
热议问题