In my class I have the property:
public virtual DateTime Date { get; set; }
Which renders "31/12/2012 12:00:00 AM" by default with the culture set to "en-CA" and "12/31/2012 12:00:00 AM" if the culture is "en-US".
The JQuery validation works fine in "en-US" but in "en-CA" complains about "The field Date must be a date".
I think the solution is using the JQuery Globalization library. I just don't know how to do it for this "General Date Long Time ("G") Format Specifier" ASP.Net renders. Any ideas?