Guest User

Untitled

a guest
Dec 13th, 2018
92
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>
  2. <input type="text" placeholder="Search......." aria-label="Number" style="text-transform: uppercase"
  3. matInput formControlName="myControl" [matAutocomplete]="auto">
  4. <mat-autocomplete #auto="matAutocomplete" autoActiveFirstOption (optionSelected)=getSelectedClient($event.option);>
  5. <mat-option *ngFor="let option of displayList; let i = index" [value]="option">
  6. {{option}}
  7. </mat-option>
  8. </mat-autocomplete>
  9. </mat-form-field>
Add Comment
Please, Sign In to add comment