Unobtrusive Validation on en-GB Dates

后端 未结 3 925
渐次进展
渐次进展 2021-01-05 15:15

I am designing a data input form using asp.net MVC4 which has an input of type date.

Using the unobtrusive jQuery library in chrome and jQueryUI datepicker I was sti

3条回答
  •  南方客
    南方客 (楼主)
    2021-01-05 15:37

    Can i suggest you another work around, Put this in your web.config to avoid issues with differenet culture settings.

    
    

    And in Jquery datepicker this would be enough,

     $(function () {
            $(".datepicker").datepicker({ dateFormat: "dd/MM/yyyy" });
     });
    

提交回复
热议问题