材质角度,按单元格的不同值排序

时间:2018-12-04 11:05:59

标签: angular angular-material angular-material-6 angular-material-table

我有以下代码

<ng-container matColumnDef="recipient_id">
      <mat-header-cell *matHeaderCellDef mat-sort-header>Recipient</mat-header-cell>
      <mat-cell *matCellDef="let row">
            <a mat-raised-button [color]="row.recipient.recipient_id === profile.profile_id ? 'primary' : 'basic'" target="_blank" [routerLink]="['/profile', row.recipient.recipient_id]">
                 {{ row.recipient.recipient_id }}
            </a>
      </mat-cell>
</ng-container>

我可以按row.recipient.recipient_id进行排序吗?还是此功能不可用?

我正在使用6.4.7版。

0 个答案:

没有答案