Buttons Collection not working under Bootstrap Modal
Buttons Collection not working under Bootstrap Modal
luisrortega
Posts: 79Questions: 6Answers: 1
in Editor
Hi, when using DataTables Buttons with collection under a modal screen (bootstrap), the collection buttons does not show (I believe it shows behind the screen).
This discussion has been closed.
Replies
Its probably a z-index issue. Can you link to a page showing the issue so I can debug it please.
Allan
The development code is on a private network, but I should be able to update QA's servers in a few days... I'll post the link as soon as it is updated!
Fixed!!! Thanks for pointing me in the right direction!
Modal class in bootstrap has the following z-index
.modal 1050
.modal-backdrop 1040
.navbar-fixed-top 1030
The following css fixed the problem
.dropdown-menu{
z-index:1051;
}
Thanks Allan!