我试图打开一个打开的多维对话框,但问题是第一个多维对话框在第二个打开时关闭了
// the controller of the first popUp
class popUpOneController{
constructor($mdDialog){
this.$mdDialog=$mdDialog;
.
.
.
}
others methods codes......
// the second $mdDialog to be opened from the first
// this function will be executed by clicking on a html button
openPopUp2(){
// here we call a component into the $mdDialog
this.$mdDialog.show({
template: '<interlo-sibel data-to-pass='+data+' index-selectedElm='+index+' type='+type+' ></interlo-sibel>',
targetEvent: event,
escapeToClose: false
})
}
popUpOneController.$inject=['$mdDialog'];
export default popUpOneController
发布于 2016-08-03 00:18:43
我找到了答案,我们只是添加了以下属性'skipHide: true‘
openPopUp2(){
// here we call a component into the $mdDialog
this.$mdDialog.show({
template: '<interlo-sibel data-to-pass='+data+' index-selectedElm='+index+' type='+type+' ></interlo-sibel>',
targetEvent: event,
skipHide: true
})
}
plunker上的演示链接:https://plnkr.co/edit/jaDD79A1JII4XKhXP64Y?p=preview
https://stackoverflow.com/questions/38725026
复制相似问题