Feature proposal #4213
closedImplement jQuery dropdown menu plugin
Description
Find or design a jQuery dropdown menu plugin that has proper DOM placement to avoid overflow issues (should move menu to body in DOM then move back on close). This should be styled after Bootstrap and use DIVs instead of list elements.
Updated by krileon about 11 years ago
Expected format for custom jQuery plugin:
<div class="cbdropdown-group">
<button type="button" class="cbdropdown-toggle">Menu</button>
<div class="cbdropdown-menu">
<div class="cbdropdown-item"><a href="#">Item 1</a></div>
<div class="cbdropdown-item"><a href="#">Item 2</a></div>
<div class="cbdropdown-divider"></li>
<div class="cbdropdown-item"><a href="#">Item 3</a></div>
</div>
</div>
If possible implement as a new CB function that prepares all of this from an array of menu items.
Updated by krileon about 11 years ago
- Status changed from Assigned to Rejected
Not needed. Just use Bootstrap dropdown and on the show event move the menu around the DOM as needed.