Bootstrap 的下拉菜单被数据表隐藏
Posted
技术标签:
【中文标题】Bootstrap 的下拉菜单被数据表隐藏【英文标题】:Bootstrap's dropdown hidden by datatables 【发布时间】:2013-08-10 22:03:31 【问题描述】:我正在使用 Twitter Bootstrap 为 DataTables 网格中的每一行创建一个带有 DropDown 菜单的按钮,但 DataTables 中的数据容器使用“溢出:隐藏”是什么导致 DropDown 被剪切。
我不能只切换到“溢出:自动”,因为这会导致出现不必要的垂直滚动条。
这是JSFiddle
<table cellpadding="0" cellspacing="0" border="0" class="pretty" id="example"></table>
JS
/* API method to get paging information */
$.fn.dataTableExt.oApi.fnPagingInfo = function (oSettings)
return
"iStart": oSettings._iDisplayStart,
"iEnd": oSettings.fnDisplayEnd(),
"iLength": oSettings._iDisplayLength,
"iTotal": oSettings.fnRecordsTotal(),
"iFilteredTotal": oSettings.fnRecordsDisplay(),
"iPage": oSettings._iDisplayLength === -1 ? 0 : Math.ceil(oSettings._iDisplayStart / oSettings._iDisplayLength),
"iTotalPages": oSettings._iDisplayLength === -1 ? 0 : Math.ceil(oSettings.fnRecordsDisplay() / oSettings._iDisplayLength)
;
/* Bootstrap style pagination control */
$.extend($.fn.dataTableExt.oPagination,
"bootstrap":
"fnInit": function (oSettings, nPaging, fnDraw)
var oLang = oSettings.oLanguage.oPaginate;
var fnClickHandler = function (e)
e.preventDefault();
if (oSettings.oApi._fnPageChange(oSettings, e.data.action))
fnDraw(oSettings);
;
$(nPaging).addClass('pagination').append(
'<ul>' +
'<li class="prev disabled"><a href="#">← ' + oLang.sPrevious + '</a></li>' +
'<li class="next disabled"><a href="#">' + oLang.sNext + ' → </a></li>' +
'</ul>');
var els = $('a', nPaging);
$(els[0]).bind('click.DT',
action: "previous"
, fnClickHandler);
$(els[1]).bind('click.DT',
action: "next"
, fnClickHandler);
,
"fnUpdate": function (oSettings, fnDraw)
var iListLength = 5;
var oPaging = oSettings.oInstance.fnPagingInfo();
var an = oSettings.aanFeatures.p;
var i, j, sClass, iStart, iEnd, iHalf = Math.floor(iListLength / 2);
if (oPaging.iTotalPages < iListLength)
iStart = 1;
iEnd = oPaging.iTotalPages;
else if (oPaging.iPage <= iHalf)
iStart = 1;
iEnd = iListLength;
else if (oPaging.iPage >= (oPaging.iTotalPages - iHalf))
iStart = oPaging.iTotalPages - iListLength + 1;
iEnd = oPaging.iTotalPages;
else
iStart = oPaging.iPage - iHalf + 1;
iEnd = iStart + iListLength - 1;
for (i = 0, iLen = an.length; i < iLen; i++)
// Remove the middle elements
$('li:gt(0)', an[i]).filter(':not(:last)').remove();
// Add the new list items and their event handlers
for (j = iStart; j <= iEnd; j++)
sClass = (j == oPaging.iPage + 1) ? 'class="active"' : '';
$('<li ' + sClass + '><a href="#">' + j + '</a></li>')
.insertBefore($('li:last', an[i])[0])
.bind('click', function (e)
e.preventDefault();
oSettings._iDisplayStart = (parseInt($('a', this).text(), 10) - 1) * oPaging.iLength;
fnDraw(oSettings);
);
// Add / remove disabled classes from the static elements
if (oPaging.iPage === 0)
$('li:first', an[i]).addClass('disabled');
else
$('li:first', an[i]).removeClass('disabled');
if (oPaging.iPage === oPaging.iTotalPages - 1 || oPaging.iTotalPages === 0)
$('li:last', an[i]).addClass('disabled');
else
$('li:last', an[i]).removeClass('disabled');
);
/* Table initialisation */
$(document).ready(function ()
$('#example').dataTable(
"aaData": [
/* Reduced data set */ ['<div class="btn-group" style="float: left">' +
'<a class="btn btn-small dropdown-toggle" data-toggle="dropdown" href="#">Actions' +
'<span class="caret"></span>' +
'</a>' +
'<ul class="dropdown-menu">' +
'<li><a href="#">Approve</a></li>' +
'<li><a href="#">View</a></li>' +
'</ul>' +
'</div>' +
'<a href="#" id="editButton" class="btn btn-small"><i class="icon-pencil"></i></a>' +
'<a href="#" class="btn btn-small deleteButton"><i class="icon-trash"></i></a>', "Internet Explorer 4.0", "Win 95+", 4, "X"],
['<div class="btn-group" style="float: left">' +
'<a class="btn btn-small dropdown-toggle" data-toggle="dropdown" href="#">Actions' +
'<span class="caret"></span>' +
'</a>' +
'<ul class="dropdown-menu">' +
'<li><a href="#">Approve</a></li>' +
'<li><a href="#">View</a></li>' +
'</ul>' +
'</div>' +
'<a href="#" id="editButton" class="btn btn-small"><i class="icon-pencil"></i></a>' +
'<a href="#" class="btn btn-small deleteButton"><i class="icon-trash"></i></a>', "Internet Explorer 5.0", "Win 95+", 5, "C"],
['<div class="btn-group" style="float: left">' +
'<a class="btn btn-small dropdown-toggle" data-toggle="dropdown" href="#">Actions' +
'<span class="caret"></span>' +
'</a>' +
'<ul class="dropdown-menu">' +
'<li><a href="#">Approve</a></li>' +
'<li><a href="#">View</a></li>' +
'</ul>' +
'</div>' +
'<a href="#" id="editButton" class="btn btn-small"><i class="icon-pencil"></i></a>' +
'<a href="#" class="btn btn-small deleteButton"><i class="icon-trash"></i></a>', "Internet Explorer 5.5", "Win 95+", 5.5, "A"],
['<div class="btn-group" style="float: left">' +
'<a class="btn btn-small dropdown-toggle" data-toggle="dropdown" href="#">Actions' +
'<span class="caret"></span>' +
'</a>' +
'<ul class="dropdown-menu">' +
'<li><a href="#">Approve</a></li>' +
'<li><a href="#">View</a></li>' +
'</ul>' +
'</div>' +
'<a href="#" id="editButton" class="btn btn-small"><i class="icon-pencil"></i></a>' +
'<a href="#" class="btn btn-small deleteButton"><i class="icon-trash"></i></a>', "Internet Explorer 6.0", "Win 98+", 6, "A"],
['<div class="btn-group" style="float: left">' +
'<a class="btn btn-small dropdown-toggle" data-toggle="dropdown" href="#">Actions' +
'<span class="caret"></span>' +
'</a>' +
'<ul class="dropdown-menu">' +
'<li><a href="#">Approve</a></li>' +
'<li><a href="#">View</a></li>' +
'</ul>' +
'</div>' +
'<a href="#" id="editButton" class="btn btn-small"><i class="icon-pencil"></i></a>' +
'<a href="#" class="btn btn-small deleteButton"><i class="icon-trash"></i></a>', "Internet Explorer 7.0", "Win XP SP2+", 7, "A"],
['<div class="btn-group" style="float: left">' +
'<a class="btn btn-small dropdown-toggle" data-toggle="dropdown" href="#">Actions' +
'<span class="caret"></span>' +
'</a>' +
'<ul class="dropdown-menu">' +
'<li><a href="#">Approve</a></li>' +
'<li><a href="#">View</a></li>' +
'</ul>' +
'</div>' +
'<a href="#" id="editButton" class="btn btn-small"><i class="icon-pencil"></i></a>' +
'<a href="#" class="btn btn-small deleteButton"><i class="icon-trash"></i></a>', "Firefox 1.5", "Win 98+ / OSX.2+", 1.8, "A"],
['<div class="btn-group" style="float: left">' +
'<a class="btn btn-small dropdown-toggle" data-toggle="dropdown" href="#">Actions' +
'<span class="caret"></span>' +
'</a>' +
'<ul class="dropdown-menu">' +
'<li><a href="#">Approve</a></li>' +
'<li><a href="#">View</a></li>' +
'</ul>' +
'</div>' +
'<a href="#" id="editButton" class="btn btn-small"><i class="icon-pencil"></i></a>' +
'<a href="#" class="btn btn-small deleteButton"><i class="icon-trash"></i></a>', "Firefox 2", "Win 98+ / OSX.2+", 1.8, "A"],
['<div class="btn-group" style="float: left">' +
'<a class="btn btn-small dropdown-toggle" data-toggle="dropdown" href="#">Actions' +
'<span class="caret"></span>' +
'</a>' +
'<ul class="dropdown-menu">' +
'<li><a href="#">Approve</a></li>' +
'<li><a href="#">View</a></li>' +
'</ul>' +
'</div>' +
'<a href="#" id="editButton" class="btn btn-small"><i class="icon-pencil"></i></a>' +
'<a href="#" class="btn btn-small deleteButton"><i class="icon-trash"></i></a>', "Firefox 3", "Win 2k+ / OSX.3+", 1.9, "A"]
],
"aoColumns": [
"sTitle": "Engine"
,
"sTitle": "Browser"
,
"sTitle": "Platform"
,
"sTitle": "Version",
"sClass": "center"
,
"sTitle": "Grade",
"sClass": "center"
],
'sScrollX': "100%",
'sScrollXInner': "150%",
'bScrollCollapse': true,
'bAutoWidth': false,
'bDeferRender': true,
'bLengthChange': false, "sPaginationType": "bootstrap",
"oLanguage":
"sLengthMenu": "_MENU_ records per page"
);
$('.acoes').dropdown();
);
【问题讨论】:
我不确定我是否错过了解你,但我想我没有这样的问题:chrpics.eu.pn/view.php?file=user/…那个下拉菜单是你的意思吗? @chris 点击最后一行的按钮。 好的,像这样:chrpics.eu.pn/view.php?file=user/…(顺便说一句,我没有改变你的小提琴的任何东西) 如果我不使用内部滚动条向下移动会发生以下情况:s2.postimg.org/41polkiuh/Capture.png。问题是,即使有 3 行数据和很大的空间要使用,DataTables 定义了一个固定的高度,这会导致不必要的滚动条。 像这样jsfiddle.net/sulfureous/QAjwK 使用overflow: visible;
怎么样?
【参考方案1】:
我遇到了同样的问题!解决了在 component.css 中移除溢出属性的问题
.table-scrollable
width: 100%;
/* overflow-x: auto;
overflow-y: hidden;*/
border: 1px solid #dddddd;
margin: 10px 0 !important;
或添加到您的 custom.css(在引导后调用)
.table-scrollable
overflow-x: visible;
overflow-y: visible;
【讨论】:
或者添加到你的 custom.css(在引导之后调用) .table-scrollable overflow-x: visible;溢出-y:可见; 在<table>
声明之前为我工作了内联模式<style>...</style>
。
惊人的答案!只需删除overflow: auto;
,现在就可以了!【参考方案2】:
这对我有用:数据表 + 固定标题 + 标题中的引导下拉菜单
.dataTables_scrollHead
overflow: visible !important;
在所有其他人之后添加到自定义 css
【讨论】:
经过长时间的搜索找到了这个并且它有效! TYSM :)【参考方案3】:好的,经过我们的 cmets,我意识到你想要什么:
您有一个带有overflow:auto
的<div>
元素,并且您希望该<div>
(菜单所在的<ul>
)内部的元素“转义”溢出规则并显示为浮动,覆盖其祖先的溢出规则。
但恐怕这是不可能。您可以做的最接近的事情是:
使用javascript创建<ul>
菜单outside<div>
和overflow:auto
,然后使用绝对位置设置它应该去的地方,或者
一旦下拉菜单被激活,使用 javascript 在底部自动滚动,方法是在最后一个下拉菜单中添加事件监听器。
第二个选项似乎更优雅,更少“hackish”。 (我个人会忽略这个问题,但如果必须选择,我会选择第二个选项)
【讨论】:
我解决了禁用 DataTables 的滚动选项,但您的建议也会对我有所帮助。 我写了两个提案的两个样本: - 移到外面:jsfiddle.net/Sc9r3/1 - 滚动:jsfiddle.net/5TNvU/2 @Marc :这是一个非常好的建议,但我发现它与 Safari 最新浏览器并不完美。第一次加载页面时,它完美弹出,然后再次单击,菜单的顶部和左侧发生了变化。而且我认为下次菜单的位置=最后一个顶部+菜单的高度...... @Marc,你应该把它写成答案,因为它运作良好。对于未来的访问者来说,只有一件事需要注意 - bootstrap.js 和 DataTables bootstrap-included js 之间存在冲突,这会导致在 show 事件之后立即触发 hide 事件,因此不会显示菜单。为避免这种情况,请勿将 bootstrap js 与数据表同时包含。【参考方案4】:对我有用的是将 Bootstrap 下拉菜单的位置调整为 fixed
并将菜单移动到屏幕的特定部分。
它适用于移动视图,因为它是相对于窗口的。
table .dropdown-menu
position: fixed !important;
top: 50% !important;
left: 92% !important;
transform: translate(-92%, -50%) !important;
这样您可以保持scroller
扩展、scrollX
和scrollY
属性DataTables
的行为。
【讨论】:
【参考方案5】:为我工作的 .dataTables_scrollHead 选择器覆盖 DataTable css 规则
.dataTables_scrollHead
position: static !important;
【讨论】:
【参考方案6】: .ngx-datatable
display: block;
overflow: visible !important;
.table-responsive
overflow: visible !important;
.table-responsive .dropdown-menu
position: static !important;
overflow: visible !important;
top: 50% !important;
left: 92% !important;
transform: translate(-92%, -0%) !important;
【讨论】:
以上是关于Bootstrap 的下拉菜单被数据表隐藏的主要内容,如果未能解决你的问题,请参考以下文章
Bootstrap 学习之js插件(下拉菜单(Dropdown)插件)