MVC4 DataType.Date EditorFor nie wyświetla wartości daty w Chrome, dobrze w Internet Explorerze

Korzystam z atrybutu DataType.Date w moim modelu i edytorze lub moim zdaniem. To działa dobrzeInternet Explorer 8 iInternet Explorer 9, ale wGoogle Chrome pokazuje selektor daty i zamiast wyświetlać wartość wyświetla tylko „Miesiąc / dzień / rok” w wyblakłym szarym tekście.

Dlaczego Google Chrome nie wyświetla wartości?

Model:

[DataType(DataType.Date)]
public Nullable<System.DateTime> EstPurchaseDate { get; set; }

Widok:

<td class="fieldLabel">Est. Pur. Date</td>
<td class="field">@Html.EditorFor(m=>m.EstPurchaseDate)</td>

questionAnswers(8)

yourAnswerToTheQuestion