Using MudCombox inside an existing popover/overlay makes the combo box unclickable because the z-index of the original overlay is wrongly increased and then MudCombobx is then under this overlay. Clicking then close the overlay

After some investigation the problem come from this line:
| <MudPopoverOpen="true"MaxHeight="@MaxHeight"AnchorOrigin="@AnchorOrigin"TransformOrigin="@TransformOrigin"OverflowBehavior="OverflowBehavior.FlipAlways"Class="@PopoverClassname"RelativeWidth="@RelativeWidth"> |
The Open property of the MudPopOver is always set to true, but its content is hidden using style.
Binding instead this property to _isOpen seems to fix the problem.

Using MudCombox inside an existing popover/overlay makes the combo box unclickable because the z-index of the original overlay is wrongly increased and then MudCombobx is then under this overlay. Clicking then close the overlay
After some investigation the problem come from this line:
CodeBeam.MudBlazor.Extensions/CodeBeam.MudBlazor.Extensions/Components/ComboBox/MudComboBox.razor
Line 123 in 8576e5c
The
Openproperty of theMudPopOveris always set to true, but its content is hidden using style.Binding instead this property to
_isOpenseems to fix the problem.