1

開いたものから md-dialog を開こうとしましたが、問題は、2 番目の md-dialog が開いたときに最初の md-dialog が閉じたことです。

// 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
4

1 に答える 1

3

答えが見つかりました。次の属性「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

于 2016-08-02T16:18:42.970 に答える