Modal inside an inactive tab on Twitter Bootstrap

107 Views Asked by At

My app's simplified structure looks like this:

  • tab 1
    • modal
    • button
  • tab 2
    • diagram

The button opens a modal, and that part works fine. What I need to add is when the users drops an element on the diagram, the same modal should be shown. But since tab1 is not active at that time, the modal is invisible.

Is there a way to show the modal without activating the tab that contains it?

EDIT: I cannot move the modal outside of tabs, because it's quite a complicated structure, generated dynamically and each tab comes as a "package" of list, buttons, modals and other stuff...

1

There are 1 best solutions below

2
On

In the bootstrap api says that you could show a modal using the following:

$('#myModal').modal('show')                // initializes and invokes show immediately