After updating Chrome to its last version 56.0.2924.76 (64-bit), our Kendo datepickers started not to work properly.
All datepickers were binded using ViewModels, an
I able to fix this by adding a format to DatePicker(), try this
@(Html.Kendo().DatePicker() .Name("dateReturn") .Format("yyyy-MM-dd") .Value(DateTime.Today) .Min(DateTime.Today) ............... )