ie下radDatePicker telerik显示错误

发布于 2024-12-29 10:03:50 字数 249 浏览 0 评论 0 原文

仅在 IE 下,我的 radDatePicker 看起来像这样:

在此处输入图像描述

代码是:

<telerik:RadDatePicker TabIndex="17" EnableEmbeddedSkins="false" Skin="Default" ...

感谢您的帮助

Under only IE my radDatePicker looks like this:

enter image description here

The code is:

<telerik:RadDatePicker TabIndex="17" EnableEmbeddedSkins="false" Skin="Default" ...

thanks for any help

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

我的影子我的梦 2025-01-05 10:03:50

我有同样的问题,解决如下:

我用 css 放置了 RadDatePicker css

<telerik:RadDatePicker ID="RadDatePicker3" runat="server" CssClass="RadInput_HIDE">
</telerik:RadDatePicker>

.RadInput_HIDE  
{    
     visibility: hidden;
}

i had the same problem, solve it as follows:

I put a RadDatePicker with css

<telerik:RadDatePicker ID="RadDatePicker3" runat="server" CssClass="RadInput_HIDE">
</telerik:RadDatePicker>

the css was

.RadInput_HIDE  
{    
     visibility: hidden;
}
余生一个溪 2025-01-05 10:03:50

这里有一些选择(我们在这种情况下所做的事情并不罕见)。

  1. 检查您的 html 在标准模式和兼容模式下的呈现是否不同(检查 到标题,看看这是否有效(我相信只有 IE > 7)或 看看这里 - 强制页面以标准模式渲染可能是也可能不是一个选项。
  2. 考虑使用 modernizr - 它有助于解决各种跨浏览器兼容性问题(但可能需要一些工作来实现) 。
  3. 如果上述两个方法不起作用,请通过查看 html 源直接定位 Telerik 生成的 CSS,并通过实现任何合适的 IE 黑客
  4. 我们在使用 Telerik DatePicker 时遇到了很多问题,以至于我们停止使用它 - 这也可能是一个选择。我们现在更喜欢 jQuery datepickers

Here are some options (things we do in that not so rare case).

  1. Check if your html renders differently in standard and in compatibility mode (check this). If it renders correctly in standard mode and just not in compatibility mode, add <meta http-equiv="X-UA-Compatible" content="IE=9"> to the header and see if this works (only IE > 7, I believe) or take a look here - forcing the page to render in standard mode may or may not be an option.
  2. Consider using modernizr - it helps with all kinds of cross browser compatibility issues (but may require some work to implement).
  3. If the two above won't help, target the Telerik-generated CSS directly by looking into the html source and limit the patches to the IE version that needs it by implementing any suitable IE hack.
  4. We've had so many issues with the Telerik DatePicker that we quit using it - that may be an option as well. We prefer jQuery datepickers now.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文