Comment ajoutez-vous une colonne personnalisée dans une table mat.
Par exemple, ajouter une colonne d'édition contenant une icône d'édition avec un événement click contenant l'id de l'élément en cours.
<div class="example-container mat-elevation-z8">
<mat-table #table [dataSource]="dataSource">
<!--- Note that these columns can be defined in any order.
The actual rendered columns are set as a property on the row definition" -->
<!-- Position Column -->
<ng-container matColumnDef="position">
<mat-header-cell *matHeaderCellDef> No. </mat-header-cell>
<mat-cell *matCellDef="let element"> {{element.position}} </mat-cell>
</ng-container>
<!-- Name Column -->
<ng-container matColumnDef="name">
<mat-header-cell *matHeaderCellDef> Name </mat-header-cell>
<mat-cell *matCellDef="let element"> {{element.name}} </mat-cell>
</ng-container>
<!-- Weight Column -->
<ng-container matColumnDef="weight">
<mat-header-cell *matHeaderCellDef> Weight </mat-header-cell>
<mat-cell *matCellDef="let element"> {{element.weight}} </mat-cell>
</ng-container>
<!-- Color Column -->
<ng-container matColumnDef="symbol">
<mat-header-cell *matHeaderCellDef> Symbol </mat-header-cell>
<mat-cell *matCellDef="let element"> {{element.symbol}} </mat-cell>
</ng-container>
<mat-header-row *matHeaderRowDef="displayedColumns"></mat-header-row>
<mat-row *matRowDef="let row; columns: displayedColumns;"></mat-row>
</mat-table>
</div>
Sur votre TableBasicExample.ts ajouter
export class TableBasicExample {
displayedColumns = ['position', 'name', 'weight', 'symbol', 'customColumn1'];
dataSource = new ExampleDataSource();
}
Et dans votre fichier html, ajoutez la colonne:
<ng-container matColumnDef="customColumn1">
<mat-header-cell *matHeaderCellDef> Custom Title</mat-header-cell>
<mat-cell *matCellDef="let element"> {{element.position}} </mat-cell>
</ng-container>
Voici la seule façon de le faire. Cela pourrait aider quelqu'un sur la route.
table.html
<ng-container matColumnDef="action">
<th mat-header-cell *matHeaderCellDef> Action </th>
<td mat-cell *matCellDef>
<ng-container *ngTemplateOutlet="templateRef"></ng-container>
</td>
</ng-container>
table.component
@Input() templateRef: TemplateRef<any>;
table-parent.html
<app-data-table [dataSource]="dataSource" [templateRef]="template">
<ng-template #template>
<button mat-icon-button color="warn">
<mat-icon>delete</mat-icon>
</button>
<button mat-icon-button color="primary">
<mat-icon>edit</mat-icon>
</button>
</ng-template>
</app-data-table>
J'espère que cela sauve quelques heures de recherche :)
Ce que vous essayez d’atteindre se trouve également dans ce package angular4-material-table , qui ajoute une structure permettant l’insertion, la modification et la suppression de lignes. Vous avez un exemple pour ajouter des colonnes d'actions personnalisées sur ce plunkr .
Vous pouvez définir une colonne avec les boutons/actions souhaités:
<mat-table [dataSource]="dataSource">
<ng-container matColumnDef="column1">
<mat-header-cell *matHeaderCellDef> column 1 title </mat-header-cell>
<mat-cell *matCellDef="let row">
<!-- col 1 -->
</mat-cell>
</ng-container>
<ng-container matColumnDef="column2">
<mat-header-cell *matHeaderCellDef> column 2 title </mat-header-cell>
<mat-cell *matCellDef="let row">
<!-- col 2 -->
</mat-cell>
</ng-container>
<ng-container matColumnDef="actionsColumn">
<mat-header-cell *matHeaderCellDef>
<button (click)="createNew()">Create new</button>
</mat-header-cell>
<mat-cell *matCellDef="let row">
<button (click)="edit()">Edit</button>
<button (click)="cancelOrDelete()">Cancel</button>
</mat-cell>
</ng-container>
<mat-header-row *matHeaderRowDef="displayedColumns">
</mat-header-row>
<mat-row *matRowDef="let row; columns: displayedColumns;">
</mat-row>
</mat-table>
Vous devez inclure la colonne dans le tableau de chaînes displayColumns:
displayedColumns = ['column1', 'column2', 'actionsColumn'];
Pour ajouter une colonne supplémentaire à vos boutons/actions, vous devez d'abord ajouter cette colonne à la liste des colonnes affichée dans le composant:
displayedColumns: string[] = ['name', 'email', 'phone', 'customColumn'];
puis ajoutez une colonne supplémentaire dans le code HTML et placez votre bouton à l'intérieur de mat-cell:
<ng-container matColumnDef="customColumn">
<th mat-header-cell *matHeaderCellDef></th>
<td mat-cell *matCellDef="let person">
<button mat-button>Edit</button>
</td>
</ng-container>
Et c'est fait. C'est aussi simple que ça.