Question RadzenSlider

Hello,

I was wondering why the max value of the RadzenSlider component is not updating correct when the max value is changed during runtime. Is this bugg? If I use the code below the bottum range input is just working fine when the TimeMax is changed the RadzenSlider shows the right length so the max value seem visible updated, but is imposible to move the slider value above the old max value.

    <RadzenSlider @bind-Value="@Time" TValue="int" Step="1" Min="0" Max="@TimeMax" Style="width:100%;height:25px" />

<div class="slidecontainer">
    		<input  type="range" min="1" max="@TimeMax" value="50" class="slider"  @onchange="@((ChangeEventArgs __e) => Time = Convert.ToInt32(__e.Value))">
    </div>

Hi @Martijn_Carol,

We will handle this in our next update later today.

1 Like