Tyme-Bleyaert

Results 11 comments of Tyme-Bleyaert

I don't know if this was intended because Editable is default false. but you could also try this without having to set the Editable property to true: ``` Set Date...

The first click is to close the menu, because when would you know the user is done selecting? In your use case the user would have to re-open the menu...

Have you tried increasing the z-index of the button to something big like : 999 ? `Click me`

I don't expect any issues as long as you don't exceed MudBlazor's default z-indexes: [https://mudblazor.com/customization/default-theme#mudtheme-zindex](https://mudblazor.com/customization/default-theme#mudtheme-zindex) And even if you did, you could always change the default values in the theme...

I think my issue #53376 is also partially related to this. The difference is I don't try to access a closed / consumed stream but also get an exception I'm...

Created repo here : https://github.com/Tyme-Bleyaert/BlazorDotNetStreamReferenceIssue When you run the repo, and set a breakpoint in the catch you will see it never breaks there (unless it's because the circuit already...

Update: this also happens in .Net 8 Edit: I think I know what happens : The cause of this issue is probably a race condition. When we look at :...

@MackinnonBuck Since the exception is already handled in the `CircuitHost`, how do you want to handle it in the `ComponentHub` ?

Hello, `MudMainContent` has the following style added to it: `padding-top: var(--mud-appbar-height);` If you also add : `padding-bottom: var(--mud-appbar-height);` Your problem should be fixed. I guess there is just no way...

One could argue that this functionality should be provided by the `FluentLayout` or `FluentMainLayout` and using the same breakpoint system as `FluentGridItem`. But that would mean we need 2 additional...