15 lines
391 B
HTML
15 lines
391 B
HTML
<h2 mat-dialog-title>Gelöschte Zylinder</h2>
|
|
<mat-dialog-content>
|
|
@if(myTheme && gridOptions) {
|
|
<ag-grid-angular
|
|
style="width: 100%; height: 100%;"
|
|
(gridReady)="onGridReady($event)"
|
|
[gridOptions]="gridOptions!"
|
|
[theme]="myTheme"
|
|
/>
|
|
}
|
|
|
|
</mat-dialog-content>
|
|
<mat-dialog-actions>
|
|
<button matButton mat-dialog-close>Schließen</button>
|
|
</mat-dialog-actions> |