@angular/material/autocomplete#MatAutocomplete TypeScript Examples

The following examples show how to use @angular/material/autocomplete#MatAutocomplete. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: autocomplete.component.ts    From geonetwork-ui with GNU General Public License v2.0 5 votes vote down vote up
@ViewChild(MatAutocomplete) autocomplete: MatAutocomplete
Example #2
Source File: edit-workflow.component.ts    From workflow-editor with Educational Community License v2.0 5 votes vote down vote up
@ViewChild('tagAuto', { read: MatAutocomplete }) matAutocomplete: MatAutocomplete;
Example #3
Source File: autocomplete-chip.component.ts    From matx-angular with MIT License 5 votes vote down vote up
@ViewChild('auto') matAutocomplete: MatAutocomplete;