1

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.

Anu Sree
  • 59
  • 3
  • 10

1 Answers1

2

Try this:

@(Html.Kendo().DatePicker()
     .Name("datepicker")
     .Value("10/10/2011")
     .HtmlAttributes(new { type = "text" })
)

See these posts:

Community
  • 1
  • 1
GôTô
  • 7,974
  • 3
  • 32
  • 43