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
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
you have to override bootstrap's.dropdown-menu
class in your style file as follow :
.dropdown-menu{
float:right !important;
position:inherit !important;
}
Demo