为什么 Telerik RadDatePicker 可在除 IE 9 之外的所有浏览器中工作?

发布于 2024-12-29 03:13:29 字数 303 浏览 0 评论 0 原文

我使用 Telerik 控件作为 DatePicker nl。 RadDatePicker,问题是它在 IE 9 中不起作用。

此 URL 显示了主要原因: http://blogs.telerik.com/aspnetmvcteam/posts/10-05-03/internet-explorer-css-limits.aspx

I use a Telerik control as DatePicker nl. RadDatePicker, the problem is that it doesn't work in IE 9.

This URL shows the main cause: http://blogs.telerik.com/aspnetmvcteam/posts/10-05-03/internet-explorer-css-limits.aspx

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

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

发布评论

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

评论(2

姜生凉生 2025-01-05 03:13:29

我在 IE9 中的 telerik 组件也遇到了一些问题,就我而言,解决方案是升级到最新的 telerik 库。

这就是使用专有库时存在的风险......

I had also some issues with the telerik components in IE9 and in my case the solution was to upgrade to latest telerik library.

This is the risk when you use a propertary library...

窗影残 2025-01-05 03:13:29

根据我的个人经验,我注意到当我们使用旧的脚本管理器时会出现浏览器兼容性问题,我也遇到了很多问题,但现在可以使用以下方法解决这些问题:

1-RadScriptManager
2-RadAjaxManager
3-RadStyleSheetManager

对于 RadScriptManager,在其中加载脚本库而不是依赖于控件嵌入主题:

<telerik:RadScriptManager ID="RadScriptManager1" runat="server" 
    EnableTheming="True">
    <Scripts>
        <asp:ScriptReference Assembly="Telerik.Web.UI" 
            Name="Telerik.Web.UI.Common.Core.js">
        </asp:ScriptReference>
        <asp:ScriptReference Assembly="Telerik.Web.UI" 
            Name="Telerik.Web.UI.Common.jQuery.js">
        </asp:ScriptReference>
        <asp:ScriptReference Assembly="Telerik.Web.UI" 
            Name="Telerik.Web.UI.Common.jQueryInclude.js">
        </asp:ScriptReference>
    </Scripts>
</telerik:RadScriptManager>

另外还有关于库加载的有用链接,请参见以下内容:
在此处输入链接说明

谢谢大家!
亚西尔·阿里
来自巴基斯坦伊斯兰堡

As of my personal experience I noticed that the Browser Compatibility issues arises when we use the old Script Manager, I also faced lot of issues but get out of them now by using the following:

1-RadScriptManager
2-RadAjaxManager
3-RadStyleSheetManager

For RadScriptManager load the script library in it rather than relying on the the controls Embeded themes:

<telerik:RadScriptManager ID="RadScriptManager1" runat="server" 
    EnableTheming="True">
    <Scripts>
        <asp:ScriptReference Assembly="Telerik.Web.UI" 
            Name="Telerik.Web.UI.Common.Core.js">
        </asp:ScriptReference>
        <asp:ScriptReference Assembly="Telerik.Web.UI" 
            Name="Telerik.Web.UI.Common.jQuery.js">
        </asp:ScriptReference>
        <asp:ScriptReference Assembly="Telerik.Web.UI" 
            Name="Telerik.Web.UI.Common.jQueryInclude.js">
        </asp:ScriptReference>
    </Scripts>
</telerik:RadScriptManager>

Also a helpful link about the library loading see following:
enter link description here

Thanks Everyone!
Yasir Ali
From Islamabad, Pakistan

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文