I am using the kendo timepicker and its working wonderfully
@(Html.Kendo().TimePicker()
.Name("EndTime")
.Value(@Model.EndTime)
.HtmlAttributes(new { style = "width: 100%", id = "EndTime", name = "EndTime", autocomplete = "off" })
)
The problem I'm running into is users who want to type values aren't including the AM/PM nor following the correct format. How can I apply a mask to the timepicker so that they are forced to format properly?