AngularJS Dropdown Multiselect选项不起作用

时间:2015-11-29 06:32:55

标签: angularjs multi-select

我正在使用AngularJS Dropdown Multiselect - http://dotansimha.github.io/angularjs-dropdown-multiselect/

看起来它正在工作,但我们还没有看到任何选定的标志。当我从下拉框中选择它看起来像 -

enter image description here

这是我的代码,

Angular Directive,

scope.example9model = []; scope.example9data = [{id: 1, label: "David"}, {id: 2, label: "Jhon"}, {id: 3, label: "Danny"}]; scope.example9settings = {enableSearch: true};

从HTML调用,

<div ng-dropdown-multiselect="" options="example9data" selected-model="example9model" extra-settings="example9settings">

那里有什么问题我无法弄清楚这一点。

0 个答案:

没有答案