MVC 4 date culture issue?

后端 未结 4 818
-上瘾入骨i
-上瘾入骨i 2020-12-01 08:08

I am using MVC 4 and am wondering if there is a bug in the Datetime culture info?

I am trying to get Australian dates to work (dd/MM/yyyy), but it keeps saying that

4条回答
  •  [愿得一人]
    2020-12-01 08:46

    What about creating a proxy function?

    var _date = $.validator.methods.date;
    
    $.validator.methods.date = function (value, element) {
        return _date.call(this, Globalize.parseDate(value), element);
    };
    

提交回复
热议问题