javascript - floatThead and bootstrap downdrop -
so trying have dropdown in fixed header. floatthead works fixing top, dropdown can display elements fit in header of table because of wrapping overflow:hidden part of floatthead. here jsfiddle. tried upping/downing z-index no avail. possible or should rid of dropdown? (it isn't necessary, nice bonus if work).
$(document).ready(function() { $('.sticky-header').floatthead({zindex: 1001}); });
you set .floatthead-container
have overflow: visible
, use !important
override inline styling.
div.floatthead-container { overflow: visible !important; }
Comments
Post a Comment