I have a jsf page with some bootstrap popovers. These popovers are draggable, using jQuery for that.
When I click on a button to show a modal, it's shown on the screen, but the popovers keep showing over the modal. Here is an image that illustrates my thing.
I realized that on bootstrap.css, the z-index of popover is greater than modal (the first is 1060 and the second 1050). I tried to alter the z-index of the modal, setting a bigger value, but it didn't work.
So, I'm wondering if somebody just faced this problem.