Im using Angular-UISelect to enable search for my dropdown.
Now i have a challenge.
- Need to create a controller level filter ( scoped to controller not app ) that takes 3 min characters from user and hit REST Api based on 3 chars and bind the result from API back to UISelect.
Steps:
- Initial load of UIselect will not have any data.
- User types 3 chars
- Fire a filter(controller scoped) which calls REST API with 3 chars
- bind REST API response to UISelect.
when i looked at UISelect demo,it performs search on already bound data.
Need some inputs on how to go about it.
you need to use
and in this function
refreshAddresses
you can put your logic