I'm currently working with Bootstrap-select v1.7.2 in an Angular project. However, when I choose an option from the dropdown menu, it ends up selecting a different one.
The Plunker setup can be found here:
http://plnkr.co/edit/HPPlxx?p=preview
(the code is located in dashboard.html and dashboard.js)
This is how I have set it up. The bootstrap-dropdown directive triggers the dropdown functionality.
<form role="form" name="frmVariableConfig" ng-submit="vm.saveChanges()">
<select ng-model="vm.CurrCustomer.Logic" name="ddlLogic" check-validation class="validate[required]" bootstrap-dropdown >
<option ng-repeat="logic in vm.Logics" value="{{logic.value}}">{{logic.displayName}}</option>
</select>
<button type="submit" class="btn btn-sm text-right">Save</button>
</form>