使用角带打开模态

时间:2015-02-11 06:25:52

标签: angularjs

我有模态对话框,我的要求是在模态内打开另一个模态对话框(按钮点击)

模态对话框中的

按钮

<a id="info" data-animation="am-flip-x" href="javascript:void(0)" data-ng-click="getAccountDetailsToDisplay()"><i class="fa fa-list"></i></a>

我从服务器获得响应,需要在模态

中显示一些客户相关数据

控制器

$scope.accountInfo = response;       

var accountInformationModal = $modal({scope: $scope, template: '../views/outwardClearing/accountinformation.html', controller: this, show: false, backdrop: 'static'}); 
                accountInformationModal.$promise.then(accountInformationModal.show);

模态(模板)正在调用,但我无法看到模态。

0 个答案:

没有答案