Open a Modal from Another Modal

945 Views Asked by At

I am trying to Open a modal from a link in another modal in ng-bootstrap.

Once the modal is closed with NgbActiveModal.close I can't manage to open the other modal.

The structure is similar to this one:

<header>
    <modal1 #firstModal></modal1>
    <modal2 #secondModal></modal2>
</header>

Plunkr

1

There are 1 best solutions below

2
On BEST ANSWER

Not 100% sure if this is what you want. Based on my understanding on what you want to achieve is to close modal 1 and open modal 2.

Your Open Modal 2 needs to be changed to:

<a href="#" (click)=" d('dismiss modal1'); open(modal2);">Open Modal 2</a>

See the changes on plunkr: http://plnkr.co/edit/T7VOmZ7KWdqjTtYb8Wzd