Groupby无法在ng-multiselect-dropdown模块中使用。
$scope.selectByGroupSettings = {
selectByGroups: ['F', 'M'],
groupByTextProvider: function(groupValue) {
switch (groupValue) {
case 'M':
return 'Male';
case 'F':
return 'Female';
case 'O':
return 'Other';
}
},
groupBy: 'gender',
};
答案 0 :(得分:2)
我将你的jsfiddle更新为
<div ng-app="myApp" ng-controller="AppCtrl">
检查
https://jsfiddle.net/29qpL78d/
将groupBy重命名为groupby [参见此处的案例] groupby也没有使用seeting,它是从属性中读取的。