Week Number Column
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.
@(Html.Kendo().DatePicker()
.Name("datepicker")
.WeekNumber(true)
.Value("10/10/2019")
)
<kendo-datepicker name="datepicker"
week-number="true"
value="new DateTime(10/10/2019)"/>