On my MVC3 razor page I have a date field
@Html.EditorFor(model => model.Member.Dob)
Given below is the code I am trying to get a datepi
@Html.LabelFor(model => model.Birthdate, "Birthday", new { @class = "control-label col-md-2" }) @Html.Kendo().DatePickerFor(model => model.Birthdate) @Html.ValidationMessageFor(model => model.Birthdate)