You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you use a typeahead drop down menu within a fixed navbar, the dropdown menu is displayed under the navbar. The dropdown is given a z-index of 1000 whilst the fixed navbar is 1030.
The text was updated successfully, but these errors were encountered:
All these issues are there because popovers, the typeahead menu and tooltips are appended to body.
If the dropdown menu is inserted after the the element (in this case the typeahead input element) it displays over the navbar, because it resides inside the navbar with z-index 1000.
Try it out: change bootstrap-typeahead.js line 36
from:
this.$menu = $(this.options.menu).appendTo('body')
to:
this.$menu = $(this.options.menu).insertAfter(this.$element)
In this case I think the menu should be overflow:visible
If you use a typeahead drop down menu within a fixed navbar, the dropdown menu is displayed under the navbar. The dropdown is given a z-index of 1000 whilst the fixed navbar is 1030.
The text was updated successfully, but these errors were encountered: