ASP.net
Awesome
Learn
Forum
Buy
Demos
Sign In
☾
☀
Switch to
Dark
Light
Mode
this site works best with javascript enabled
Ask Question
bootstrap ContextMenu inside the Grid
Title:
B
I
{code}
?
I would like to add an ContextMenu to a grid cell this is my source (boostrap) ... <div class="btn-group"> <button type="button" class="btn btn-warning btn-flat dropdown-toggle" data-toggle="dropdown" aria-expanded="false"> <span class="caret"></span> <span class="sr-only">Toggle Dropdown</span> </button> <ul class="dropdown-menu" role="menu"> <li><a href="#">Action</a></li> <li><a href="#">Another action</a></li> <li><a href="#">Something else here</a></li> <li class="divider"></li> <li><a href="#">Separated link</a></li> </ul> </div> but the dropdown remain in row, I've tried to change z-index but don't change anything. Any Idea ?
Save Changes
Cancel
mtugnoli
asked at 09 Sep 2017
you can set `.awe-row td { overflow: visible; }` this will make the bootstrap dropdown work but it can make some grid values go out of the cell you could also use the menudropdown that is used in the main demo for the "Downloads" dropdown look for the MenuDropdown in _Layout.cshtml main demo, the downloadLinks array that it is using are in Site.js
at 09 Sep 2017
Omu
Answers
please
Sign In
to leave an answer
By accessing this site, you agree to store cookies on your device and disclose information in accordance with our
cookie policy
and
privacy policy
.
OK