17 lines
440 B
HTML
17 lines
440 B
HTML
<input matInput
|
|
type="text"
|
|
id="query-autocomplete-input"
|
|
placeholder="Query"
|
|
[formControl]="queryField"
|
|
[matAutocomplete]="auto"
|
|
(keyup)="onKey($event)"
|
|
(mouseup)="onKey($event)"/>
|
|
<mat-autocomplete
|
|
#auto="matAutocomplete"
|
|
[displayWith]="displaySuggestion"
|
|
>
|
|
<mat-option *ngFor="let suggestion of filteredSuggestions | async"
|
|
[value]="suggestion">
|
|
{{suggestion.value}}
|
|
</mat-option>
|
|
</mat-autocomplete> |