New to Telerik UI for ASP.NET MVC? Start a free 30-day trial
Automatic Correction
Updated on May 12, 2025
Starting with Telerik UI for ASP.NET MVC R3 2024, the TimePicker component provides a way to disable the built-in AutoAdjust feature.
By default, when you have Min and Max values configured, the component will auto-correct the user input if it is not in the min/max range. The auto-corrected value will be either the Min or the Max value you have set for the component.
Razor
   @(Html.Kendo().TimePicker()
          .Name("timepicker")
          .DateInput()
          .AutoAdjust(false)
    )