I have a form containing a date and datetime field:
@Html.TextBoxFor(model => model.A, new { @type = "datetime" })
@Html.TextBoxFor(model => model.B, new { @type = "date" })
Model:
public class TestModel
{
[DataType(DataType.Date)]
public DateTime A {get;set;}
[DataType(DataType.Date)]
public DateTime B {get;set;}
}
By using these input types an iPad shows nice date(time) pickers. The fields are validated using client-side validation. For the datetime field (A
) it works, but the date field (B
) will raise an error: "please enter a valid date." How do I solve this?
Examples:
- This iPad (Safari) value for datetime is valid (according to MVC client-side validation): 15 dec. 2011 9:20
- This iPad (Safari) value for date is invalid: 15 dec. 2011
It's hard to debug code on an iPad, so I have no clue how Safari changes the date format when setting the input's value attribute.
Edit:
I discovered the datetime format is universal datetime format (yyyy-MM-DDTHH:mmZ
), while the date format is yyyy-MM-dd
. Probably the client-side validator does understands universal datetime and not yyyy-MM-dd
due to localization.
B
that raises the "please enter a valid date" error but that you consider valid. – Implacental