In current chrome version (56.0.2924.87), Kendo date and time picker value is not coming correctly. This was working perfectly in previous version. I have given now() as date picker value with type date from my mobile Kendo date and time picker works perfectly, but not in browser. It was working before.
Asked
Active
Viewed 5,030 times
1 Answers
2
Try this:
@(Html.Kendo().DatePicker()
.Name("datepicker")
.Value("10/10/2011")
.HtmlAttributes(new { type = "text" })
)
See these posts:
-
if I am changing attribute type from date to text it seems working, but in old version it was working fine with type="date" attribute – Anu Sree Feb 08 '17 at 09:56
-
-
1