-
I have two Dropdowns side by side. Once one is open and I want to open the other one, a click on the trigger of the second one doesn't open it immediately but closed the open Dropdown at first, so I need two clicks. Is there any option I may have missed to configure this? Thanks for your help 🙏 |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Hi @gopeter , sounds like you want to adjust the modality. You can set |
Beta Was this translation helpful? Give feedback.
-
@andy-hook I just want to say that this is probably the easiest solution to have a Dropdown triggering a Dialog. If you set the DropDown as modal=false, you can correctly have the focus trapped into the Dialog and not on the Dropdown anymore. Related issue: radix-ui/website#384 |
Beta Was this translation helpful? Give feedback.
Hi @gopeter , sounds like you want to adjust the modality. You can set
modal={false}
onDropdownMenu.Root
to achieve this.