I'm building a search feature that needs to use a typeahead that will suggest results from multiple datasets of different type of items.
I have used the Angular UI Bootstrap's typeahead directive for a single data. The documentation mention custom templates, but nothing about supporting grouping of results.
For example, I would like to be able to type in "san" and see results for people and cities, with group labels:
Cities
- San Francisco
- San Diego
People
- Santana
- Sanchez
- Sandip
Is this possible using Angular UI Bootstrap's typeahead?