I have seen Bootstrap button drop-down inside responsive table not visible because of scroll and this Bootstrap 4 drop-down menu in table question but the solutions does not work with me because I'm using the DataTables plugin.
The dropdown menu should be above everything, but even after using data-boundary="window"
as the Bootstrap 4 documentation tells, it still does not work.
You can see the problem in this JSFiddle.
Without the code of DataTables, it works just fine.
$(table).DataTable(
{
'bPaginate' : true,
'bLengthChange' : false,
'bFilter' : true,
'bInfo' : true,
'bAutoWidth' : false,
'aoColumnDefs' : [
{
'bSortable' : false,
'aTargets' : ['nosorting']
}],
'aaSorting' : [],
})