How to sort Date/Time column in angular 4 material sort?

前端 未结 5 597
借酒劲吻你
借酒劲吻你 2021-02-13 21:08

I\'m using angular material table and using matSort for sorting. But it\'s not sorting the dates/time column. It takes the datetime column values as strings.

How to sor

5条回答
  •  一整个雨季
    2021-02-13 21:54

    Here is solution:

    this.dataSource.sortingDataAccessor = (item, property): string | number => {
      switch (property) {
        case 'fromDate': return new Date(item.fromDate).toNumber();
        default: return item[property];
      }
    };
    

    MatTableDataSource has sortingDataAccessor which we can customize as per our need.

提交回复
热议问题