CodeBeamOrg / CodeBeam.MudBlazor.Extensions

Useful third party extension components for MudBlazor, from the contributors.
https://mudextensions.codebeam.org/
MIT License
371 stars 62 forks source link

DateWheelPicker in Mudpopup #152

Closed gle4711 closed 1 year ago

gle4711 commented 1 year ago

Hi, it.s me again. I have another problem with the Datewheelpicker. I want to display the control in a popup. But the control opens behind the popup. I suspect this has something to do with the z-index. I have not been able to get it to work. What do I have to do?

DateWheelPickerInPopup.txt

mckaragoz commented 1 year ago

Hi,

There is missing parameter here, with new release i will add PopoverClass into DateWheelPicker.

When this add, you can do this:

<DateWheelPicker PopoverClass="my-popover"

<style>
            .my-popover.mud-popover{
                z-index: 3000 !important;
            }
        </style>

Popup's z-index is 2000, so more than 2000 will work.

gle4711 commented 1 year ago

Thankyou.