I have a requirement where I have to implement autocomplete feature using AngularJS.
Something like this.
The above is good for autocomplete on one text box. But I am looking to implement autocomplete on more than one text box where the number of options in the second box will depend on the value selected in the first box.
For example, Let us say that there are two search boxes. The first box can have state names as input (New York, Michigan, etc). Depending on which state is selected, the second searchbox should only display the cities in that state.
Can someone point me to any resources/tutorial/examples which can help me implement a solution for this scenario.