In continuation with the question Kendo UI datepicker incompatible with Chrome 56, I want to set type = "text" property to HtmlAttributes of KendoUI datepicker controls in my project.
The number of controls are more and I cannot set one by one.
Is there a way to set it globally in a project without using a template? We have not used kendo template for datepicker.
@(Html.Kendo().DatePicker()
.Name("datepicker")
.Value("10/10/2011")
.HtmlAttributes(new { type = "text" }))