ui-select指令不显示

时间:2015-07-29 11:54:17

标签: angularjs angularjs-directive ui-select

我将使用ui-select指令,我已将select.jsselect.css添加到项目中,这是我在视图中的代码:

<ui-select ng-model="Client.selected" theme="bootstrap"     style="width:300px;">
    <ui-select-match placeholder="Select an item ...>{{$select.selected.name}}</ui-select-match>
    <ui-select-choices repeat="item in Client.rules | filter: $select.search">
    <div ng-bind-html="item.name | highlight: $select.search"></div>
    </ui-select-choices>
</ui-select>

Client.rules包含一个包含“id”和“name”的项目列表,这些项目将填充在控制器中。

运行页面后,我在控制台上没有错误,但是ui-select没有显示。

0 个答案:

没有答案