-
Mathias Chouet authoredMathias Chouet authored
dialog-generate-par-simulation.component.html 899 B
<h1 mat-dialog-title [innerHTML]="uitextGeneratePARSimulation"></h1>
<form id="form-generate-par-simulation">
<div mat-dialog-content>
<div id="generate-par-sim-desc">
{{ uitextDescription }}
</div>
<mat-form-field>
<mat-select id="select-combination" [placeholder]="label" [(value)]="selectedValue">
<mat-option *ngFor="let e of entries" [value]="e" [title]="entryLabel(e)">
{{ entryLabel(e) }}
</mat-option>
</mat-select>
</mat-form-field>
</div>
<div mat-dialog-actions [attr.align]="'end'">
<button mat-raised-button color="primary" [mat-dialog-close]="false" cdkFocusInitial>
{{ uitextCancel }}
</button>
<button mat-raised-button type="submit" color="warn" (click)="generatePARSimulation()" id="do-generate"
[disabled]="">
{{ uitextGenerate }}
</button>
</div>
</form>