Unplanned
Last Updated: 04 Mar 2021 15:13 by Darryl
Created by: Darryl
Comments: 0
Category: Slider
Type: Bug Report
1

Bug report

When a user sets the tickPlacement as BottomRight or TopLeft for a UI for ASP.NET MVC application no matter the orientation of the Kendo UI Slider, the tickPlacement is configured to use SliderOrientation.Both.

Reproduction of the problem

Using the following code, the Kendo UI Slider's tickPlacement will be set to both:

       @(Html.Kendo().Slider()
             .Name("slider")
             .IncreaseButtonTitle("Increase")
             .DecreaseButtonTitle("Decrease")
             .Min(0)
             .Max(20)
             .SmallStep(1)
             .Tooltip(true)
             .Value(18)
             .ShowButtons(true)
             .TickPlacement(SliderTickPlacement.BottomRight)
             .LargeStep(10)    
       )

Current behavior

Here is a screencast of the behavior in action.

Environment

  • For UI for ASP.NET MVC Only
  • Kendo UI version: 2021.1.224