I have an MVC form that has 3 required fields. A Name textbox, a Dropdown list and a textbox with the JQuery DatePicker attached to it. If the form is submitted and there is nothing selected, the form gets rejected and text appears next to the fields stating it is required. After I select a date from the JQuery DatePicker textbox the required text is still there, this is not the case with the other two required inputs. Any idea how to fix this?
Here are some images:

After I select a date

Model
[Required(ErrorMessage="Required")]
public string Requestor { get; set; }
[Required(ErrorMessage="Required")]
[DataType(DataType.Date)]
[Display(Name="Date Requested")]
public DateTime? Date_Requested { get; set; }
[Required(ErrorMessage = "Required")]
public string Process { get; set; }
View
<div class="editor-label">
@Html.LabelFor(model => model.Requestor)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.Requestor)
@Html.ValidationMessageFor(model => model.Requestor)
</div>
<div class="editor-label">
@Html.LabelFor(model => model.Date_Requested)
</div>
<div class="editor-field">
@Html.TextBoxFor(model => model.Date_Requested,new {@class="datepicker" })
@Html.ValidationMessageFor(model => model.Date_Requested)
</div>
<div class="editor-label">
@Html.LabelFor(model => model.Approved_Date)
</div>
<div class="editor-field">
@Html.TextBoxFor(model => model.Approved_Date,new {@class="datepicker" })
@Html.ValidationMessageFor(model => model.Approved_Date)
</div>
JQuery This is where I found the code JQuery DatePicker
$(".datepicker").datepicker();