md-select で複数選択を有効にしようとしています。trueにハードコーディングmultiple
しましたが、md-select がcheckbox
ドロップダウン リストの値以外に表示されません。
AngularJS 1.4.8 と AngularMaterial 1.0.0 を使用しています。
コード:
<div style="background: #f7f7f7" ng-controller="CircleTimeActivityPageController">
<md-input-container flex="30">
<md-select multiple="true" placeholder="Observations" ng-model="myData">
<md-option ng-value="selectedObservation" ng-repeat="selectedObservation in observations">
{{ selectedObservation }}</md-option>
</md-select>
</md-input-container>
</div>
mainApp.controller('CircleTimeActivityPageController', function($scope, $http, $mdToast, $log) {
$scope.observations = [1.3, 1.2, 1.1];
});
AngularJS と AngularMaterial に関する私の無知をお許しください。
編集:
コードペンの例: https://codepen.io/wingoku/pen/ZLYxNY
よろしくお願いします