While Telerik UI for jQuery has this option, I couldn't find any examples of how to use it for MVC:
$("#test").kendoDatePicker({
dateInput: true,
messages: {
dateInput: {
month: "__",
year: "____",
day: "__",
},
},
});
$("#test").kendoDatePicker({
dateInput: true,
messages: {
dateInput: {
month: "__",
year: "____",
day: "__",
},
},
});
@(Html.Kendo().DatePicker()
.Name("ProcedureDateEnd")
.DateInput()
///// how to use messages here?
)