I have a dropdown control and a txt input control which is bound to typeahead control. Initially when I'll display category
As soon as I get to the input box for filtering and the control gets the focus I'm able to get the results:
As a next step I'll change the filter value to Priority
But when I click the input textbox nothing happens until I'll enter some value and clear it, please check the gif at this url https://i.gyazo.com/d95937ade5b9c05ec3adf169c7533d50.mp4
The input textbox has this markup :
<input name="states" ng-trim="false" id="states" type="text" placeholder="Start Filtering..." ng-model="selected" typeahead-editable="false" uib-typeahead="state for state in states | filter:$viewValue | limitTo:8" class="form-control" typeahead-on-select="onSelect($item, $model, $label)" typeahead-min-length="0">