私は角度のアプリを持っていて、他のコンポーネントの中に角度のある素材を使っています。 Angularフォームを含むTemplateUrlを遅延ロードしてAngular Tab Dialogを開くことはできますか? 可能であれば、このフォームをどのように参照しますか?ここ は、私は、ダイアログを開くために使用いくつかのコードです:角度のついた角のダイアログ
$scope.showTabDialog = function(ev) {
$mdDialog.show({
controller: DialogController,
templateUrl: 'pages/properties/tabDialog.tmpl.html',
parent: angular.element(document.body),
targetEvent: ev,
clickOutsideToClose:true
})
.then(function(answer) {
$scope.status = 'You said the information was "' + answer + '".';
}, function() {
$scope.status = 'You cancelled the dialog.';
});
};
どれヘルプをいただければ幸いです、
ので、問題はここで何ですか? –