コントローラのisideからselect2の値を設定しようとしています。問題は、ng-optionsを使用すると、モデル値の変更がselect2リストに反映されないことです。
html:
<div ng-controller="MyCtrl">
<a ng-click="selected2=['B','C']">Test</a>
<br/>
<select ui-select2 multiple ng-model="selected2" ng-options="item for item in newArr">
</select>
</div>
js:
var myApp = angular.module('myApp', ['ui']);
function MyCtrl($scope) {
$scope.newArr = ['A','B','C'];
$scope.$watch('selected2', function(newVal,oldVal){
console.log(newVal,oldVal);
});
}
これがフィドルです