コードに問題があります。必要なのは、矢印が上を向いている「NotesText」を隠すことだけで、「NotesText」矢印を指し示している必要があります。私はこれを起こす方法を見つけることができません、お願いします、私は助けが必要です。AngularJS - グリフコン付きの矢印アイコンの表示と非表示
基本的に、私は必要な私はこれは私が持っているものである
を表示または非表示にする必要がある場合は、同意矢印の方向を変更することです。
これはHTMLです:
<div id="notes-controller" class="collapse in" ng-controller="NotesController">
<fieldset>
<legend class="translatable" data-i18n="Notes">Notes</legend>
<form novalidate class="simple-form">
<div class="container col-md-12" ng-show="$ctrl.param.note.visible">
<textarea class="col-md-12" ng-readonly="$ctrl.param.note.readonly" type="text" id="Notes" ng-model="$ctrl.notes.note" ng-model-options="{ getterSetter: true }" />
</div>
</form>
</fieldset>
</div>
<span type="button" class="glyphicon glyphicon-chevron-up" data-toggle="collapse" data-target="#notes-controller"></span>
これはこれは、それがどのように見えるかであるコントローラー
angular.
module('notesText').
component('notesText', {
templateUrl: '/Scripts/test/notes-text/notes-text.template.html',
bindings: {
notes: '=',
param: '='
}
}).controller('NotesController', ['$scope', function ($scope) {
$scope.master = {};
$scope.update = function (user) {
$scope.master = angular.copy(user);
};
$scope.reset = function() {
$scope.user = angular.copy($scope.master);
};
$scope.reset();
}]);
です:
コンソール内の任意のエラーを取得するのですか? –
cudあなたが期待している出力は何ですか? – Iceman
@Iceman Alvaroは次のようなことを期待しています:http://i.stack.imgur.com/tEYm1.png –