Topic: How to create a Nested Dropdown
Tushar Raj free answered 5 years ago
This is a workaround. I am surprised that such a big library doesn't provide a basic feature. I have dropped the plan to use this library any more.
Atul Dhone free answered 8 years ago
Bartłomiej Malanowski staff answered 8 years ago
<div class="btn-group">
<button class="btn btn-primary dropdown-toggle" type="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Basic dropdown</button>
<div class="dropdown-menu">
<a class="dropdown-item" href="#">Action</a>
<a class="dropdown-item" href="#">Another action</a>
<div class="dropdown-submenu">
<a class="dropdown-item dropdown-toggle" type="button" data-toggle="dropdown" href="#">Something else here</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="#">Action</a>
<a class="dropdown-item" href="#">Another action</a>
<div class="dropdown-submenu">
<a class="dropdown-item dropdown-toggle" type="button" data-toggle="dropdown" href="#">Something else here</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="#">Action</a>
<a class="dropdown-item" href="#">Another action</a>
<div class="dropdown-submenu">
<a class="dropdown-item dropdown-toggle" type="button" data-toggle="dropdown" href="#">Something else here</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="#">Action</a>
<a class="dropdown-item" href="#">Another action</a>
<a class="dropdown-item" href="#">Something else here</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
CSS:
.dropdown-submenu {
position:relative;
}
.dropdown-submenu .dropdown-menu {
top:0;
left:100%;
}
JS:
$('.dropdown-submenu .dropdown-toggle').on("click", function(e) {
e.stopPropagation();
e.preventDefault();
$(this).next('.dropdown-menu').toggle();
});
Arch free commented 6 years ago
can not show my side. Can u pls have an idea how to make like mega menu for three level with bootstrap packages?Atul Dhone free answered 8 years ago
Bartłomiej Malanowski staff answered 8 years ago
Atul Dhone free answered 8 years ago
FREE CONSULTATION
Hire our experts to build a dedicated project. We'll analyze your business requirements, for free.
Answered
- ForumUser: Free
- Premium support: No
- Technology: General Bootstrap questions
- MDB Version: -
- Device: -
- Browser: -
- OS: -
- Provided sample code: No
- Provided link: No