Topic: How to create a Nested Dropdown
ramyakinkor
asked 10 years ago
Tushar Raj
answered 7 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.
Bartłomiej Malanowski
staff pro premium answered 10 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 commented 8 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
answered 10 years ago
Michal Szymanski
staff pro premium priority answered 7 years ago
Bartłomiej Malanowski
staff pro premium answered 10 years ago
Atul Dhone
answered 10 years ago
Bartłomiej Malanowski
staff pro premium answered 10 years ago
Atul Dhone
answered 10 years ago
FREE CONSULTATION
Hire our experts to build a dedicated project. We'll analyze your business requirements, for free.
Answered
- User: Free
- Premium support: No
- Technology: General Bootstrap questions
- MDB Version: -
- Device: -
- Browser: -
- OS: -
- Provided sample code: No
- Provided link: No