-
Notifications
You must be signed in to change notification settings - Fork 94
Open
Description
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
| <MudPopover Open="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.
Metadata
Metadata
Assignees
Labels
No labels

