简体   繁体   中英

UI-Bootstrap Typeahead on a Modal

I wanted to place a Typeahead directive on a Modal dialog. The problem is that when typeahead show it's list of possible matches it is behind modal-footer div. I played with append-to-body then the whole list is behind the modal dialog. Also played with append-to no luck. Any suggestion?

The solution was to add this attribute to html:

typeahead-append-to-body="true"

and in the css file this:

 .dropdown-menu {
       z-index:9999;
   }

Now the Typeahead displays correctly over the modal dialog.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM