多选下拉AngularJS - 选项属性未知

时间:2016-06-09 23:52:34

标签: angularjs drop-down-menu multi-select

目前我正在使用select for dropdown。我想将此更改为多选下拉列表。但是当我宣布多选下拉列表时,我收到错误说"未知属性选项"

当前代码只是没有多选的下拉列表。

                      <select class="form-control">      <option ng-repeat="item in CETIGroupList" value="{{item}}">{{item}}</option>
                        </select>

我为multiselect写的是

<div ng-dropdown-multiselect="" options="CETIGroupList" ></div>

请帮我创建一个多选下拉列表。 感谢

1 个答案:

答案 0 :(得分:0)

在您的应用中添加loadsh.jsbootstrap cssAngularJS Dropdown Multiselect。在您的应用中注入angularjs-dropdown-multiselect

angular.module('sampleApp', ['angularjs-dropdown-multiselect'])
HTML页面中的

<div ng-dropdown-multiselect="" options="example13data" selected-model="example13model" ></div>
控制器中的

$scope.example13model = [];
    $scope.example13data = [{
      id: 1,
      label: "David"
    }, {
      id: 2,
      label: "Jhon"
    }, {
      id: 3,
      label: "Lisa"
    }, {
      id: 4,
      label: "Nicole"
    }, {
      id: 5,
      label: "Danny"
    }];

看看这个小提琴:https://jsfiddle.net/ebinmanuval/8Ltae8pb/