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
Solution 1:
you have to override bootstrap's.dropdown-menu
class in your style file as follow :
.dropdown-menu{
float:right !important;
position:inherit !important;
}
Demo
Post a Comment for "Rtl For Angularjs Bootstrap's Typeahead"