プロジェクトでangular ui select https://github.com/angular-ui/ui-selectを使用しています。ui-selectディレクティブを使用しています
私のコード:
<select class="input-small" ng-model="dashboard.style" ng-options="f for f in ['light','hpexp']" ng-change="styleUpdated()"></select>
ui-select を使いたいので、
<ui-select id="viewSelector"
class="viewSelector input-small"
ng-model="dashboard.style"
ng-options="f for f in ['light','hpexp']"
ng-change="styleUpdated()"
theme="selectize">
<ui-select-match placeholder="-- Select --">
{{$select.style}}</ui-select-match>
</ui-select>
しかし、それは機能していません。ng-optionsでの使い方ui-select
ありがとう!!