私のMain.Htmlにはタブの指示が含まれています。タブのカスタムディレクティブを作成しました。次のボタンをクリックすると次のタブに移動し、戻るボタンをクリックすると前のタブに移動する必要があります
<div class="modal-header">
<span class="modal-title">Add Report Template</span>
<div class="closeButton right" ng-click="closeModal()"></div>
</div>
<div class="modal-body">
<tab-set>
<tab heading="1st Tab">
This is the content for 1st Tab
</tab>
<tab heading="2nd Tab">
This is the content for 2nd tab
</tab>
<tab heading="3rd Tab">
This is the content for 3rd tab.
</tab>
</tab-set>
</div>
<div class="modal-footer">
<div>
<button type="text" class="grayButton right" ng-click="goToNextTab()">Next</button>
<button type="text" class="grayButton left" ng-click="goToPreviousTab()">Back</button>
</div>
</div>
マイMain.controller私は3つのタブが表示さ
(function() {
'use strict';
angular
.module('myApp')
.controller('Controller', ['$scope', function($scope,) {
var vm = this;
/////////////// Function to Change tab on click of the Back/Next Button ///////////////
$scope.goToNextTab = function() {
};
$scope.goToPreviousTab = function() {
};
}]);
})();
次と戻るボタンの機能を定義するマイタブセットディレクティブが必要。
angular
.module('myApp')
.directive('TabSet', function() {
return {
restrict: 'E',
transclude: true,
scope: { },
templateUrl: 'tabset.html',
bindToController: true,
controllerAs: 'tabs',
controller: function($scope) {
var self = this;
self.tabs = [];
self.addTab = function addTab(tab) {
self.tabs.push(tab);
if(self.tabs.length === 1) {
tab.active = true;
}
};
self.select = function(selectedTab) {
angular.forEach(self.tabs, function(tab) {
if(tab.active && tab !== selectedTab) {
tab.active = false;
}
});
selectedTab.active = true;
};
}
};
});
タブセットのHTML対応タブセットディレクティブため。
<div role="tabpanel" class="tabsets">
<ul class="nav nav-tabs" role="tablist">
<li role="presentation" ng-repeat="tab in tabs.tabs" ng-class="{'active': tab.active}">
<a href="#{{tab.heading}}" role="tab" ng-click="tabs.select(tab)">{{tab.heading}}</a>
</li>
</ul>
<div ng-transclude></div>
</div>
これは、個々のタブを作成するためのタブディレクティブです。
angular
.module('myApp')
.directive('Tab', function() {
return {
restrict: 'E',
transclude: true,
template: `<div role="tabpanel" ng-show="active"><div ng-transclude></div></div>`,
require: '^TabSet',
scope: {
heading: '@'
},
link: function(scope, elem, attr, tabs) {
scope.active = false;
tabs.addTab(scope);
}
}
});
私は私が行方不明です何あまりにもわからないが、与えられた構造のために私は次のクリックだけでなく、main.htmlとで定義された戻るボタンに基づいてタブを切り替えたいです。
あなたのクイックヘルプを事前に評価してください。
jsfiddleを作成できますか? –
@NaguibIhab私はそれのための手伝いをしていない、ちょうどあなたの生産の上で実行されている私のコードの骨格を与えることを試みた。あなたは親切に作成してみることができますか? – ankurJos
@NaguibIhab https://thinkster.io/angular-tabs-directiveこのリンクを参照してローカルセットアップを行うことができます。しかし、Main.htmlに2つのボタンを追加してください。申し訳ありませんが、 – ankurJos