I have problem while using jQuery Custom date picker with Data Annotations validation.
This is my Metadata
[Display(Name = "DOB")]
[Required(ErrorMessage = "Please enter {0}")]
[DisplayFormat(ApplyFormatInEditMode = true, DataFormatString = "{0:dd/MM/yyyy}")]
public DateTime MyDate { get; set; }
This is my View.
$(function () {
$("#MyDate").datepicker({ dateFormat: 'dd/mm/yy' });
});
and
@Html.LabelFor(model => model.MyDate)
@Html.EditorFor(mode => mode.MyDate)
@Html.ValidationMessageFor(model => model.MyDate)
When I select date for example 31/12/2012 it shows error The value '31/12/2001' is not valid for DOB.
If I give input like mm/dd/yyyy(12/31/2012) it does accept.
So what I am missing, Can anyone help please ?