码迷,mamicode.com
首页 > 其他好文 > 详细

KendoUi下的DatePicker在谷歌浏览器上不能正常显示时间的解决方法

时间:2017-11-18 18:44:43      阅读:715      评论:0      收藏:0      [点我收藏+]

标签:highlight   this   support   har   UI   https   enc   不能   att   

@(Html.Kendo().DatePickerFor(m => m.BillDate))

解决方法:加上type="text"就能正常显示了。

@(Html.Kendo().DatePickerFor(m => m.BillDate).HtmlAttributes(new { type = "text" }))

 

原解决方法出处:https://www.telerik.com/forums/datepicker-and-currencytextbox-stopped-working-in-chrome-56

Telerik论坛管理员回答内容如下:

Hello Aljosa,

Thank you for sharing this approach.

If updating is not an option we can also recommend setting the HTML attributes like this:

@(Html.Kendo().DatePickerFor(m => m)
 .HtmlAttributes(new { type = "text" }))


Regards,
Stefan 
Telerik by Progress

KendoUi下的DatePicker在谷歌浏览器上不能正常显示时间的解决方法

标签:highlight   this   support   har   UI   https   enc   不能   att   

原文地址:http://www.cnblogs.com/wjx-blog/p/7857443.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!