I\'m trying to get a dropdown working inside a form for one of my React components. Here is how I\'m setting up the dropdown portion of the code, the following is inside a f
after a long searching and tweaking I got the answer here
you just have to add a css to resolve this issue. when you click on dropdown button, it adds a class "show" to that element and as per bootstrap that much is sufficient to make a dropdown button work.
.show>.dropdown-menu {
display: block;
position: absolute;
}
for me it work like charm.
I tries @teimurjan solution and it worked for me but with two issues