New to Telerik UI for ASP.NET MVC? Start a free 30-day trial
Week Number Column
Updated over 6 months ago
The DatePicker provides options for rendering a column which displays the number of the weeks within the current Month view.
To render the week number column, enable the WeekNumber property.
Razor
    @(Html.Kendo().DatePicker()
        .Name("datepicker")
        .WeekNumber(true)
        .Value("10/10/2019")
    )