Reputation: 21
I have an HTML table where each row contains a Twitter Bootstrap style drop down list. When I click the button to show the list, the menu is not shown due to the overflow
property of the div
container. I have placed sample code that shows the issue I'm having at: http://jsfiddle.net/jpaolini/XgYKP/4/.
The goal is to get the drop down menu to appear on top of everything so it can be seen without have to scroll. Any help is greatly appreciated.
Upvotes: 2
Views: 3379
Reputation: 337
you can try adding position:absolute in your .btn-group and the dropdown will go out of the table. The btn wont go inside the table anymore though
Upvotes: 1
Reputation: 16020
I removed the overflow: auto;
from .widget-content
and removed overflow: hidden
from .dataTables_wrapper
, and that seems to work.
http://jsfiddle.net/jackwanders/cnnsB/
Upvotes: 3