对我来说,静态选项标签适用于多选,但如果使用ng-repeat我没有获得选项列表,如果我删除"选择 - 选择"名单即将到来。 以下工作正常
in JS
var config = {
'.chosen-select' : {},
'.chosen-select-deselect' : { allow_single_deselect: true },
'.chosen-select-no-single' : { disable_search_threshold: 10 },
'.chosen-select-no-results': { no_results_text: 'Oops, nothing found!' },
'.chosen-select-rtl' : { rtl: true },
'.chosen-select-width' : { width: '95%' }
}
for (var selector in config) {
$(selector).chosen(config[selector]);
}
}
In Html
<select data-placeholder="Choose a Country..." class="chosen-select" multiple tabindex="4">
<option value="United States">United States</option>
<option value="United States">India </option>
</select>
如果我用ng-repeat替换这个html代码,它就无法正常工作。
<select data-placeholder="Choose a Group" class="chosen-select" multiple tabindex="4">
<option ng-repeat="x in group" value="{{x.groupId}}">{{x.groupName}}</option>
</select>
我也在使用selected.jquery.js文件。
答案 0 :(得分:1)
添加angular-chosen.min.js,列表(Category)为数组值
<select chosen multiple tabindex="4" class="form-control" ng-model="categoryid" ng-options="cat for cat in category" id="category" >
<option value=""></option>
</select>