MudBlazor: How to enable real-time thousands separators in a custom decimal input component?
I’m building a Blazor component that uses a MudTextField to accept decimal numbers and display them with real-time thousands separators. I want the formatting to kick in as soon as the user types (e.g., typing 123456.78
should become 123,456.78
). I also need the field to auto-select all text on focus.
MudBlazor: How to enable real-time thousands separators in a custom decimal input component?
I’m building a Blazor component that uses a MudTextField to accept decimal numbers and display them with real-time thousands separators. I want the formatting to kick in as soon as the user types (e.g., typing 123456.78
should become 123,456.78
). I also need the field to auto-select all text on focus.
Stop OnKeyDown event propagation
I have a MudTextField component which is bound to a decimal value and I want to erase the default 0 value when the user starts typing numbers. I’ve used the OnKeyDown
event but I see it gets propagated even after I handle it and the number typed by the user gets inserted twice. args.StopPropagation
does not seem to exist in Blazor or MudBlazor.
Stop OnKeyDown event propagation
I have a MudTextField component which is bound to a decimal value and I want to erase the default 0 value when the user starts typing numbers. I’ve used the OnKeyDown
event but I see it gets propagated even after I handle it and the number typed by the user gets inserted twice. args.StopPropagation
does not seem to exist in Blazor or MudBlazor.
C# .NET blazor mudblazor drag and drop problem
When I drag an item to a higher place(it means lower position index) its working fine(in the same Section), but if I try to a lower place(it means higher position index)(in the same Section) nothing happening.
Is it possible only to pick month and year in MudBlazor DateRangePicker?
Is it possible to pick the month and the year in the DateRangePicker? The DatePicker has this functionality, so you don’t need to pick a day to successfully apply the filter.