I am using angular ui select https://github.com/angular-ui/ui-select in my project. I am using ui-select
directive
My code:
<select class="input-small" ng-model="dashboard.style" ng-options="f for f in ['light','hpexp']" ng-change="styleUpdated()"></select>
I want to use ui-select So I did,
<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>
But it is not working. How to use ng-options
in ui-select
Thanks!!