ng2-select
ng2-select copied to clipboard
Not listing items into dropdown list
I am using angular 7 and bootstrap 4, its not showing dropdown list to i select any things .
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;
}
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