When editing an entry with a DateTime property the data from that property isn't displayed on the view.
Everything else is send to the view correctly and inserted into the editors except for Date. The date picker just shows "MM/dd/yyyy".
public class Reference
{
//Other stuff like id etc
[DataType(DataType.Date)]
[DisplayFormat(DataFormatString = "{0:dd/MM/yyyy}", ApplyFormatInEditMode = true)]
public DateTime? Date { get; set; }
}
The view:
<div class="editor-label">
@Html.LabelFor(model => model.Date)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.Date)
@Html.ValidationMessageFor(model => model.Date)
</div>
How can I get it to display the date from the entry?