I'm using Kendo with asp.net mvc
@Html.EditorFor(model => model.shipmentDate)
It shows blank value in Chrome v56 and that wasn't the case with Chrome v49.0.2623 for example.
Here's the ViewModel:
[Display(Name = "Shipment Date")]
[Required(ErrorMessage = "Please select a shipment date")]
[DataType(DataType.Date)]
[DisplayFormat(DataFormatString = "{0:yyyy-MM-dd}", ApplyFormatInEditMode = true)]
public DateTime shipmentDate { get; set; }
Also, inspect this element with Chrome's Developer tool I have this:
<input data-val="true" data-val-date="The field Shipment Date must be a date." data-val-required="Please select a shipment date" id="shipmentDate" name="shipmentDate" type="text" value="03/09/17" data-role="datepicker" class="k-input" role="combobox" aria-expanded="false" aria-owns="shipmentDate_dateview" style="width: 100%;">
The value is passed from the Controller as you can see, but date does not display.
What should I change with this version of Chrome?