Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 custom date format string, I updated the Date.cshtml file under the EditorTemplates folder to the following:

@(Html.Kendo().DatePickerFor(m => m).Format("dd/MM/yyyy"))

By doing that, I managed to have the DatePicker display the format as I want it to. However, it failed validation for some of the dates entered for input, either via manual key in or selection from the popup calendar.

Upon further investigation, I can say that the DatePicker is validating the date based on a M/d/Y format. That assumption was made based on my foundings that 12/1/2012 is a valid date, whereas 13/1/2012 is not.

I also tried adding .ParseFormat("dd/MM/yyyy") to the end of the DatePicker declaration in Date.cshtml but it does not fix anything. So I would say that this is definitely a bug and I will report this to Telerik later.

But for the time being, I'm looking for a workaround to have this working. I find that I can override kendo.ui.validator.rules.mvcdate in Javascript to have my own validation function. While this work fine in Chrome, it does not work in IE9.

So, any ideas how I can make the DatePicker to accept dd/MM/yyyy input format? Thanks in advance.

share|improve this question
1  
Did you ever report this or post about it on the kendo forums? – Patrick M Feb 15 at 0:39

2 Answers

up vote 2 down vote accepted

Internally, the date validation rule for ASP.NET MVC (the unobtrusive client validation), uses kendo.parseDate(string) method, which internally will use the predefined date patterns if no format/s is/are defined. I suppose that in your case the default culture is "en-US" and that is why validation fails, because dates with "dd/MM/yyyy" format are considered as not valid. One possible solution is to override the date validation rule (as you did) and parse the string using a specific format. The other option is to set diff culture settings for the page. For instance, the short date format for the "de-DE" culture is "dd/MM/yyyy".

share|improve this answer
1  
That worked for me. But I would like it better if Kendo MVC implementation does not do undocumented magical stuff on top of the standard Kendo Javascript library. – Amry Jul 26 '12 at 1:14
1  
Kendo UI Validator does not support ASP.NET MVC unobtrusive validation out of the box. That is why you need to include the kendo.aspnetmvc.js, which provides additional validation rules. I don't think that this is magical stuff. We definetely will improve the docs about the Kendo MVC validation. – George K Jul 26 '12 at 10:05

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.

share|improve this answer
Your solution does not work for me. $.validator is undefined and the code in there is not being triggered. I don't think Kendo uses JQuery's validator. – Amry Jul 25 '12 at 0:45
Kendo UI has own validator. It is not jQuery Validate. Check this link - demos.kendoui.com/web/validator/index.html – George K Jul 26 '12 at 10:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.