valor-software / ng2-select

Angular based replacement for select boxes
http://valor-software.github.io/ng2-select/
MIT License
676 stars 588 forks source link

Not listing items into dropdown list #967

Open tikemantns opened 5 years ago

tikemantns commented 5 years ago

I am using angular 7 and bootstrap 4, its not showing dropdown list to i select any things .

sickOscar commented 5 years ago

In my case it was a conflict with the .dropdown-menu class of bootstrap.

I fixed it with the following css snippet

.ui-select-container .dropdown-menu {
    display: block;
}
Kirding commented 4 years ago

In my case it was a conflict with the .dropdown-menu class of bootstrap.

I fixed it with the following css snippet

.ui-select-container .dropdown-menu {
    display: block;
}

so good