I\'m using Kendo DatePicker to edit a Date field being displayed in a Kendo Grid in my ASP.NET MVC 4 project. In order to have the DatePicker being used for the Date field use c
I changed the date validation rule:
$.validator.methods.date = function (value, element) { return this.optional(element) || /^\d\d?-\w\w\w-\d\d\d\d/.test(value); };
My format is slightly different than yours but you should be able to modify this.