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; } 

jsfiddle


Comments

Popular posts from this blog

Delphi XE2 Indy10 udp client-server interchange using SendBuffer-ReceiveBuffer -

Qt ActiveX WMI QAxBase::dynamicCallHelper: ItemIndex(int): No such property in -

Enable autocomplete or intellisense in Atom editor for PHP -