Building a typeahead style filter (similar to AngularJS) with Angular 2
Hello - I am very new to Angular 2 and am trying to figure out some things about input boxes/filters, etc.
I'm not seeing a lot of good examples online regarding how to build a custom search filter/dropdown in Angular 2...similar to a typeahead style filter in AngularJS.
....Where when a user starts entering text into an input box...a drop-down appears and shows all values in an array/table that match the text that has been entered.
I did find an example on GitHub...but it is marked as depreciated.
With me being so new to Angular in general...I am not sure I am searching for the correct terms either(?).
How would I modify the input box in the code below to include that functionality? So instead of the table itself starting to limit things as text is entered into the filter...the search box would dropdown so values that match what is being typed would be displayed...and the user can select the value from the drop-down list if they want...to have it then populate the table? Any assistance you can provide is greatly appreciated.