VERNOU Cédric
VERNOU Cédric
@danielchalmers > Is it possible that this has the same bug fixed in https://github.com/MudBlazor/MudBlazor/pull/9706? No, this PR is about `MudButtonGroup` while #9706 is about `MudToggleGroup`. > Also a test asserting...
@danielchalmers I hadn't seen that toggle group manage children. I based on data grid. Do you want I modify button group to look like toggle group?
@henon @ScarletKuro I think the PR is ready to be merged.
> Do you want me to implement the RuntimeLocation to be testable? As you wish.
It's a know issue. You can read this GitHub issue to full detail :\ [TypedResults metadata are not inferred for API Controllers](https://github.com/dotnet/aspnetcore/issues/44988) In summary, metadata aren't correctly inferred to action...
@hjrb, thank for you return. The support to async action was added in the version [1.0.1](https://www.nuget.org/packages/Vernou.Swashbuckle.HttpResultsAdapter/1.0.1).
From the documentation [Controller action return types in ASP.NET Core web API](https://learn.microsoft.com/en-us/aspnet/core/web-api/action-return-types?view=aspnetcore-8.0#resultstresult1-tresultn-type) : > ### Results type > The static [TypedResults](https://learn.microsoft.com/en-us/dotnet/api/microsoft.aspnetcore.http.typedresults) class returns the concrete IResult implementation that allows using...
`MudTextField` with mask manages all key events to compute the text, so `OnKeyUp` isn't fired. --- The original problem : > `to register for "Enter" to submit a field.` `MudMask`...
Indeed, `MudDateRangePicker.ResetAsync` has a weird behavior. It resets `MudDateRangePicker.Value`... that isn't used by the component, because the real value is in `MudDateRangePicker.DateRange`. --- @kellyrmartin, maybe `MudDateRangePicker.ClearAsync` can be a alternative....
In our case, we can have unspecified date, for example order without fixed delivery date. We want manage this in C# with nullable date, but in the database with no...