At the moment I have a combo box. In my appservice, I query my database and grab top ten.
<select id="StationSelectionCombobox"
name="Country"
ng-options="s.amenityUID as s.amenityName for s in vm.nearbyStations"
ng-model="vm.stations[$index].amenityUID"
ng-change="vm.updateStation($index)"
class="form-control bs-select drop-down"
ui-jq="selectpicker">
<option value="">@L("NotSelected")</option>
</select>
I am looking to update the model on the fly as characters are entered. May I ask how abouts should I do that, or if this is even capable with this control.