私のイオンフレームワークでは、送信ボタンをクリックすると確認ポップアップが開きます。
はい のクリックで欲しいです!button
別の同様のポップアップを表示します。1 つのポップアップ ボタンをクリックして別のポップアップをターゲットにするにはどうすればよいですか。
Codepen デモを探す
以下の私のコントローラーコード:
.controller('PopupCtrl', function($scope, $ionicPopup){
//confirm Number
$scope.confirmNumber = function(){
var confirmPopup = $ionicPopup.confirm({
title: 'NUMBER CONFIRMATION:',
template: '<span class="numberConfirm">+91 9820098200</span>Is your phone number above correct?',
buttons: [{
text: 'Edit',
type: 'button-block button-outline button-stable',
scope: null,
onTap: function(e) {
}
}, {
text: 'Yes, it is!',
type: 'button-block button-outline button-stable',
onTap: function(e) {
return scope.data.response;
}
}]
});
confirmPopup.then(function(res){
if(res){
}else{
}
});
};
});