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.

link|improve this question

73% accept rate
Please give an example of input for B that raises the "please enter a valid date" error but that you consider valid. – phoog Dec 15 '11 at 8:15
@Guillaume's deleted comment: it is valid HTML, but indeed not handled by every browser. Since iPad supports these input types I use it only in an iPad view. For normal browsers I use a jQuery datetime picker. – Henkie Dec 15 '11 at 8:27
type="date" is new in HTML5. What is your doctype ? dev.w3.org/html5/markup/input.html – Guillaume Dec 15 '11 at 8:27
@Guillaume it's valid but in HTML 5 and so not supported everywhere yet. – Stéphane Bebrone Dec 15 '11 at 8:28
@Guillaume, it has nothing to do with the doctype. The problem is the datetime type's value is valid according to MVC client-side validation, but (almost the same format) date type's value is not. – Henkie Dec 15 '11 at 8:29
show 1 more comment
feedback

1 Answer

up vote 1 down vote accepted

I had the exact same problem and was maddened beyond belief when viewing a mobile site I'm developing on my iPhone. The discussion in the issue below solved it for me.

https://github.com/jzaefferer/jquery-validation/issues/20.

Also, to go the distance with this in a seamless way, I created the following razor editor template for Date data types:

@model DateTime?
@Html.TextBox("", ViewData.Model.ToIso8601FullDate(), new { type = "date", @class = "text-box single-line" })

and a handy extension method to feed the html 5 date input type a format it enjoys working with according to the spec for input type=date:

public static string ToIso8601FullDate(this DateTime? d)
{
    if (!d.HasValue) return null;

    return d.Value.ToString("yyyy-MM-dd");
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.