I'm trying to change the jquery date valuation to en-GB culture without success. For example for 23rd March 2013, I want to enter 23/03/2013 and not 03/23/2013.
When I call the validation method on the form it returns false. I'm not getting a validation error from Kendo, just from the jquery method.
How can I change the culture setting for jQuery?
<script src="@Url.Content("~/Scripts/Kendo/cultures/kendo.culture.en-GB.min.js")"></script>
<script>kendo.culture("en-GB");</script>
...
@(Html.Kendo().DatePickerFor(model => model.OrderDate).HtmlAttributes(new { style = "width:150px", required = "required" }).Culture("en-GB").Format("dd/MM/yyyy"))
...
var isValid = $("#orderForm").valid(); // returns false if I select 23/3/2013
Thanks.