When pressing the tab key, the focus changes to another field. What I want is that, when the focus comes to a <select>
, the option list is shown.
This is working:
<div ng-controller="TypeaheadCtrl">
<input type="text" /><br>
<input type="text" /><br>
<input type="text" ng-model="selected" typeahead="state for state in states " />
</div>
This is not working:
<div ng-controller="TypeaheadCtrl">
<input type="text" /><br>
<input type="text" /><br>
<!-- this is not working -->
<select ng-model="selected" >
<option value="aa">aa</option>
<option value="bb">bb</option>
</select>
</div>
My plunker code is here.