Make Angular Bootstrap Typeahead go up

508 views Asked by At

The typeahead suggestion box goes down - its a drop down list. How can I make it go up so that the base of the suggestions box is at the top of the text field?

Like this for example...

enter image description here

1

There are 1 answers

0
Ian Warburton On BEST ANSWER

I managed this by removing the following from the template:

top: position.top+'px', 

This from my CSS:

top: 100%;

And adding the following to the CSS:

bottom: 38px;

Where 38px is the height of the text box. Unfortunately the top declarations had to be removed because there's no way as far as I know to unset top without using script and it takes precedence over bottom.

I own the CSS and I can put the template in a separate file that overrides the default so I won't lose my changes.