Html – Angular mat table sorting when column has two properties
I am implementing a table with MatSort where every column sorting works except one (the third): <ng-container matColumnDef="nbreEnregistrementTotal"> <th mat-header-cell *matHeaderCellDef mat-sort-header>N° enregistrement dans le fichier</th> <td mat-cell *matCellDef="let row"> {{row.nbreEnregistrementTotal}}</td> </ng-container> <ng-container matColumnDef="nbreMouvementsDetailsDiffusees"> <th mat-header-cell *matHeaderCellDef mat-sort-header>N° enregistrement acceptées</th>…