This is the same problem as https://github.com/twitter/bootstrap/issues/3287 (see image) but I don’t understand the solution!
I have the following HTML:
<div class="btn-toolbar">
<div class="btn-group">
<button class="btn dropdown-toggle" data-toggle="dropdown">Options<span class="caret"</span></button>
<ul class="dropdown-menu">
<li><a href="del"> Action 1</a></li>
<li><a href="details"> Action 2</a></li>
<li><a href="edit"> Action 2</a></li></ul></div></div>
</ul>
</div>
</div>
which should make a table with a button that can be clicked to reveal some dropdown options from the button.
Many thanks :).
This works for me