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

Week Number Column

The DateRangePicker provides options for rendering a column which displays the number of the weeks within the current Month view.

To render the week number column, set the WeekNumber property to true.

    @(Html.Kendo().DateRangePicker()
        .Name("daterangepicker")
        .WeekNumber(true)
        .HtmlAttributes(new { style = "width: 100%" })
    )
    <kendo-daterangepicker name="daterangepicker"
                           style = "width: 100%"
                           week-number="true">
    </kendo-daterangepicker>

See Also

In this article