yusijs
yusijs

Reputation: 867

Bootstrap popover 'stuck' inside a modal

I have made a bootstrap modal that contains information fetched from a db, and on each of these rows there is a unique reference, that opens a popover with closer information about said row.

My issue is that the popover gets "stuck" inside the modal, which makes it look, well, shait (see below).

My thoughts was that I wanted the popover to extend beyond the modal, rather than stop along its right edge. Is there any way I can do this?

Upvotes: 2

Views: 1582

Answers (1)

Holt
Holt

Reputation: 37626

Change the popover container to body using the data-container attribute or the container value in javascript. See http://getbootstrap.com/javascript/#popovers.

Upvotes: 6

Related Questions