Selection through mouse click is not possible when using tagging-label='false'
in Angular ui-select. I tested with version angular-ui-select - 0.13.2, 0.14.1 and latest 0.14.9. My requirement is that I can enter any value through keyboard like a textbox and I can select any existing option from dropdown with mouse.
<ui-select tagging="newTag" tagging-label="false" ng-model="selectedCountry" theme="bootstrap" style="width: 300px;" title="Choose a country">
<ui-select-match placeholder="Select country...">{{$select.selected}}</ui-select-match>
<ui-select-choices repeat="country in countries | filter:$select.search">
{{country}}
</ui-select-choices>
</ui-select>
Here is the Plnkr - http://plnkr.co/edit/UGbBq1fSMZK12tpa2wK5?p=preview