Guest User

Untitled

a guest
Jun 21st, 2018
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. <h3 mat-dialog-title>My order</h3>
  2. <mat-dialog-content>
  3. <mat-form-field>
  4. <input
  5. matInput
  6. placeholder="Order name"
  7. [value]="name" #orderName
  8. (keyup.enter)="closeDialog({ choose: true, name: orderName.value })"
  9. >
  10. </mat-form-field>
  11. </mat-dialog-content>
  12. <mat-dialog-actions>
  13. <button
  14. mat-raised-button
  15. (click)="closeDialog({ choose: true, name: orderName.value })"
  16. >
  17. Ok
  18. </button>
  19. <button
  20. mat-raised-button
  21. (click)="closeDialog({ choose: false, name: orderName.value })"
  22. >
  23. Cancel
  24. </button>
  25. </mat-dialog-actions>
Add Comment
Please, Sign In to add comment