-
Notifications
You must be signed in to change notification settings - Fork 377
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: Combobox wrong z-index stack order #1188
Comments
No, this is not intended. PR is welcome! |
I am using this in a Blazor serverside using .Net 8 (Microsoft.FluentUI.AspNetCore.Components v 4.3.1). I have the inside a Below is a minimum syntax that you can just dump to a page and test.
And this is how it appears If I just set the height of fluent-data-grid-cell then the list appears. Note that I have set the Height to 200px in So I guess the z-index issue still remains. |
This is a different issue. It is a duplicate of #217 (still open) which is tied to an issue in our upstream dependencies. We do not have a good fix available for this. Some extra food for thought...the |
When the
Height
property is not specify inFluentCombobox
, some elements are displayed on top of the combobox options list.Basically the guitly is this logic:
@if (!String.IsNullOrEmpty(Height)) { <style> @($"#{Id}::part(listbox) {{ max-height: {Height}; z-index: {ZIndex.ComboboxPopup} }}") </style> }
I can make a PR, I just wanted to know if this is intended.
The text was updated successfully, but these errors were encountered: