I have strange problem. My date validation doesn\'t work in Chrome. I\'ve tried this answer but it didn\'t work for me.
I have this in my model:
[Dis
The problem seems to be with (HTML5) as specification says that valid value is defined as RFC3339.
So I changed my View to something like this:
@Html.LabelFor(model => model.ValidFrom) @Html.HiddenFor(model => model.ValidFrom) @Html.ValidationMessageFor(model => model.ValidFrom)
Hope it helps.