Hi,
I'm displaying some data in a MatTableDataSource but I have the following question.
How do I display the data present in cphas when it can be a 1-to-many array?
I would like to return, on the same line, the name of the data referring to this array.
follow my code
My displayed Columns look like this:
displayedColumns: string[] = ['cpha', 'process', 'appointment', 'arbitration', 'issue', 'performance', 'value', 'duplicity.justification', 'cphas'];
I'm displaying the cphas data like this:
<!-- Symbol Column -->
<ng-container matColumnDef="cphas">
<th mat-header-cell *matHeaderCellDef> Duplicate with </th>
<td mat-cell *matCellDef="let element"> {{element.cphas}}</td>
</ng-container>
can anybody help me?