Guest User

Untitled

a guest
Jul 19th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. <mat-form-field [hideRequiredMarker]="true">
  2. <input matInput [(ngModel)]="size" type="text"
  3. placeholder="{{'OPTIONS.SIZE' | translate}}"
  4. [matAutocomplete]="autoSize"
  5. readonly="{{!model}}"
  6. (keyup)="filterSizes()"
  7. matTooltip="{{ 'OPTIONS.MODEL_REQUIRED' | translate }}"
  8. [matTooltipDisabled]="model != ''" />
  9.  
  10. <mat-autocomplete #autoSize="matAutocomplete">
  11. <mat-option *ngFor="let completeSize of filteredSizeNames" [value]="completeSize">
  12. {{completeSize}}
  13. </mat-option>
  14. </mat-autocomplete>
  15. </mat-form-field>
Add Comment
Please, Sign In to add comment