isteven-multi-select

Posted 顺子2016

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了isteven-multi-select相关的知识,希望对你有一定的参考价值。

html部分:
<div isteven-multi-select
input-model="allPersonnelGrouped"
output-model="groupedOutput"
button-label="icon name"
item-label="icon name maker"
tick-property="ticked"
max-height="250px"
group-property="msGroup">
</div>


angularjs部分:
$http.get(‘/messages/shifts‘).success(function(data) {

$scope.groupedShifts = data;


angular.forEach( $scope.groupedShifts, function( groupShift ) {

$scope.allPersonnelGrouped = [
{ name: ‘<strong>All Shifts</strong>‘, msGroup: true },
{ name: ‘<strong>‘ + groupShift.title + ‘</strong>‘, msGroup: true },
{ icon: ‘‘, name: groupShift.personnel, maker: ‘(‘ + groupShift.email + ‘)‘, ticked: false },
{ msGroup: false },
{ msGroup: false }
];

});

});

以上是关于isteven-multi-select的主要内容,如果未能解决你的问题,请参考以下文章