Kendo UI datepicker incompatible with Chrome 56

后端 未结 2 506
逝去的感伤
逝去的感伤 2020-12-03 01:30

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

2条回答
  •  無奈伤痛
    2020-12-03 02:29

    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)
     ...............
    )
    

提交回复
热议问题