Search code examples
javascriptangularjstwitter-bootstrapangular-ui-bootstrapbootstrap-typeahead

RTL for angularjs bootstrap's typeahead


As can be seen below, the completion list is on the left when I want it to be on the right. How can I do that?

here is my work enter image description here


Solution

  • you have to override bootstrap's.dropdown-menu class in your style file as follow :

    .dropdown-menu{
        float:right !important;
        position:inherit !important;
      } 
    

    Demo