Dialog with a Select component in it, the latter from @blueprintjs/select.The dialog disappears
The dialog should not disappear. I use Select with no problem outside a dialog, but no luck within a dialog. There is no problem with Select from @blueprintjs/labs.
try popoverProps={ usePortal: true } to make the Select inline inside the Dialog. this is typically required for nested overlays like dialog & popover.
Didn't work. This is a very low priority of course since the Labs version works, but still worth noting. Thanks anyway
i'll bet this is related to #2092, something about nested portals.
@rheinheimer did you put usePortal: trueusePortal: false on the Select? that's the one that should not use a portal.
@giladgray I tried usePortal: true on the popover props of the Select and it did not solve the issue
@k-simons definitely want usePortal: false on the inner guy, my bad above
@giladgray Perfect that worked
popoverProps={ usePortal: false } did the trick. Thanks!
Most helpful comment
popoverProps={ usePortal: false }did the trick. Thanks!