The View Model:
[DataType(DataType.Date)]
[DisplayFormat(DataFormatString = "{0:MM/dd/yyyy}", ApplyFormatInEditMode = true)]
[Required(ErrorMessage = "*")]
public DateTime? TransferDate { get; set; }
The Javascript
$("#TransferDate").datepicker({ dateFormat: 'mm/dd/yy' });
The View
@Html.EditorFor(model => model.TransferDate)
Although I have also change the culture information in Web.Config
<globalization uiCulture="en-US" culture="en-US"/>
Reference to this post validating date format not working
But still validation is coming false and Model Value coming NULL.
Kindly Suggest me some solution