Материал угловой, сортировка по разным значениям ячейки - PullRequest
0 голосов
/ 04 декабря 2018

У меня есть следующий код

<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.

...