fullstackhero / blazor-wasm-boilerplate

Clean Architecture Boilerplate Template for .NET 6.0 Blazor WebAssembly built for FSH WebAPI with the goodness of MudBlazor Components.

Home Page:https://fullstackhero.net/blazor-webassembly-boilerplate/general/getting-started/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

MudSlider wrong value

anasseb opened this issue · comments

Hello,

In the product page, the MaximumRate is set to 9999, when moving left the slider one step, the value is 99.

Hi,
Maybe the mudslider is not the best option for determining a range for the rates.
However, it can be fixed by adding Min & Max attributes to the Mudslider. Consider also a step attribute.

<MudSlider T="decimal" @bind-value="SearchMaximumRate" Min="0" Max="9999" Step="100">@L["Maximum Rate"]: @_searchMaximumRate.ToString()</MudSlider>

Hi, Maybe the mudslider is not the best option for determining a range for the rates. However, it can be fixed by adding Min & Max attributes to the Mudslider. Consider also a step attribute.

<MudSlider T="decimal" @bind-value="SearchMaximumRate" Min="0" Max="9999" Step="100">@L["Maximum Rate"]: @_searchMaximumRate.ToString()</MudSlider>

Thanks, I'll test it.