弹出窗口顶部的离子打开模式
Ionic Opening Modal on top of popup
我是 Ionic 新手。当我在使用 Ionic 组件时,我发现当我尝试在弹出窗口中创建模态时,无法点击模态中的内容。
我发现了类似的问题:Open an ionic modal on top of an ionic popup
但似乎没有人提出建议。
有什么意见或建议吗?
Controller; creates Popup and info_input has a button to open modal.
var myPopup = $ionicPopup.show({
templateUrl: 'templates/info_input.html',
scope: $scope,
buttons: [
{
text: 'Cancel',
}
},
{
text: '<span class="selectConfirm">Select</span>',
type: 'button-dark',
onTap: function(e) {
if (!scope.autofill) {
e.preventDefault();
} else {
$scope.NextPage(0);
}
}
}
]
});
我已经找到了临时解决方案。我编辑了 ionic.css 文件
.popup-open {
pointer-events: none; }
to
.popup-open {
pointer-events: auto; }
我是 Ionic 新手。当我在使用 Ionic 组件时,我发现当我尝试在弹出窗口中创建模态时,无法点击模态中的内容。
我发现了类似的问题:Open an ionic modal on top of an ionic popup 但似乎没有人提出建议。
有什么意见或建议吗?
Controller; creates Popup and info_input has a button to open modal.
var myPopup = $ionicPopup.show({
templateUrl: 'templates/info_input.html',
scope: $scope,
buttons: [
{
text: 'Cancel',
}
},
{
text: '<span class="selectConfirm">Select</span>',
type: 'button-dark',
onTap: function(e) {
if (!scope.autofill) {
e.preventDefault();
} else {
$scope.NextPage(0);
}
}
}
]
});
我已经找到了临时解决方案。我编辑了 ionic.css 文件
.popup-open {
pointer-events: none; }
to
.popup-open {
pointer-events: auto; }