我有模态对话框,我的要求是在模态内打开另一个模态对话框(按钮点击)
模态对话框中的<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);
模态(模板)正在调用,但我无法看到模态。