I have an app that I have recently upgraded to .Net 4.5.1 and MVC 4. I am using the jQuery datepicker and jQuery.validation 1.11.1.
I am in the UK therefore the dates will be in the en-GB locale ("dd/mm/yyyy"). I have tried what is suggested here, here and here but to no avail.
I also have in my web.config:
<globalization uiCulture="en-GB" culture="en-GB" />
and have set the globalisation in IIS to en-GB, but every date that is input is validated as a US format date.
Can anyone help please?
Changing the date validation method in jQuery.validate.js to the follwing solved the issue:
date: function (value, element) {
$.culture = Globalize.culture("en-GB");
var date = Globalize.parseDate(value, "dd/MM/yyyy", "en-GB");
return this.optional(element) ||
!/Invalid|NaN/.test(new Date(date).toString());
}
Tested in Chrome, FF and IE
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With