I have the following code which displays a menu-submenu.
<div class="btn-group btn-group-xs" style="overflow: visible !important; ">
<button data-toggle="dropdown" class="btn btn-white dropdown-toggle" aria-expanded="true" style=" border-color: #ccc; overflow: visible !important;">
<i class="ace-icon fa fa-angle-down icon-on-right"></i>
</button>
<ul class="dropdown-menu" style="overflow: visible !important;">
<li class="dropdown-submenu" style="overflow: visible !important;">
<a href="#">AAA</a>
</li>
</ul>
</div>
But within a datatable, the submenu is overlapped by other components.
I noticed that it displays correctly by removing the ui-datatable that the prime generates, but of course the layout is compromised.
<div id="list" class="ui-datatable ui-widget">
I tried to insert the overflow but nothing has changed.
Would anyone have any idea what might be causing this?
Thank you