New to Telerik UI for ASP.NET MVC? Download free 30-day trial

Date Ranges

You can create a Calendar with a selected date and define a minimum and a maximum date.

As a result, the Calendar does not navigate to a date that is earlier than the specified minimum date and also restricts the navigation up to the maximum date you specified.

   @(Html.Kendo().Calendar()
            .Name("calendar")
            .Value(DateTime.Now)
            .Min(new DateTime(1950, 1, 2))
            .Max(new DateTime(2049, 12, 31)))

See Also

In this article