1
I don’t know exactly what your code is, but I use it this way:
<select chosen="chosen.options" id="especialidade" ng-model="specialty" no-results-text="chosen.empty" class="form-control">
<option selected ng-click="search(true, false)">{{chosen.specialty}}</option>
<option ng-repeat="item in specialties" value="{{item.name}}" ng-click="search(true, false)">{{item.name}}</option>
</select>
This first option I put Selected and my interpolation is a default "Select" text. The second option is where I will go through my specialty options.
In my case, when clicking on one of the specialties I have an ng-click that does an action, if you just want to list you don’t need to use ng-click.
Please enter some of the code
– Jorge Costa