Advertisement
Guest User

Untitled

a guest
Oct 15th, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. <div class="container">
  2. <mat-form-field>
  3. <mat-select placeholder="MTR Level:" [(value)]="selectedMTR" id="mtrpos"
  4. #mtrpos>
  5. <mat-option *ngFor="let mtr of MTRs" [value]="mtr.value">
  6. {{mtr.viewValue}}
  7. </mat-option>
  8. </mat-select>
  9. </mat-form-field>
  10. <mat-form-field>
  11. <mat-select placeholder="MER Level:" [(value)]="selectedMER">
  12. <mat-option *ngFor="let mer of MERs" [value]="mer.value">
  13. {{mer.viewValue}}
  14. </mat-option>
  15. </mat-select>
  16. </mat-form-field>
  17. <mat-form-field>
  18. <mat-select placeholder="FEC:" [(value)]="selectedFEC">
  19. <mat-option *ngFor="let fec of FECs" [value]="fec.value">
  20. {{fec.viewValue}}
  21. </mat-option>
  22. </mat-select>
  23. </mat-form-field>
  24. <mat-form-field>
  25. <mat-select placeholder="T1-T4 timeout" [(value)]="selectedtimeout">
  26. <mat-option *ngFor="let time of Times" [value]="time.value">
  27. {{time.viewValue}}
  28. </mat-option>
  29. </mat-select>
  30. </mat-form-field>
  31. <button (click)="submitEntry()"> Update </button>
  32. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement