This is a migrated thread and some comments may be shown as answers.

[Solved] The version 2012.1.419 doesn't work in IE9

1 Answer 36 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Jun
Top achievements
Rank 1
Jun asked on 23 May 2012, 11:31 PM
We're evaluating Telerik for ASP.NET MVC, particularly Menu and Grid component. It works wells in version 2012.1.301, but after we update it to 2012.1.419 then the menu doesn't work in IE 9 - when we click the menu item, the sub-menu item don't appear in IE 9 - it works in FireFox12.0 though. It also affect the hyperlink with java script function, such as: <a href="javascript:exitImpersonate()">Exit</a>. In IE 9, when we click the link, the intended js function is not invoked at all, again, this works in 2012.1.301.

It looks to us that the javascript function is somehow disabled in IE 9 with this version. Does anyone meet the same issue ?

We're using MVC2, and here is part of the code for our Site.Master:

<head runat="server">
        <title>
            <asp:ContentPlaceHolder ID="TitleContent" runat="server" />Title
        </title>               
        <script type="text/javascript" src='<%=Page.ResolveUrl("~/Scripts/2012.1.301/jquery-1.7.2.min.js")%>'></script>       
        <script type="text/javascript" src='<%=Page.ResolveUrl("~/Scripts/2012.1.301/telerik.common.min.js") %>'></script>
        <script type="text/javascript" src='<%=Page.ResolveUrl("~/Scripts/2012.1.301/telerik.menu.min.js") %>'></script>
    </head>
    <body>
        <div id="page">
            <div id="header">               
                <div id="menucontainer">
                <%  Html.Telerik()
                        .Menu()
                        .Name("resources")
                        .HtmlAttributes(new { @class = "menu-bar" })
                        .OpenOnClick(true)
                        .Items(menu =>
                        {
                            /*menu.Add().Text("Course").Action("CampusQuery", "Home");*/
                            menu.Add()
                                .Text("Course")
                                .Items(item =>
                                {
                                    item.Add().Text("By Lecture").Action("CampusQuery", "Home");
                                });
                           //other codes not included
                        })
                        .Render();
                %>
                </div>
            </div>
            <div id="main">
                <asp:ContentPlaceHolder ID="MainContent" runat="server" />
            </div>
            <div id="footer"></div>
        </div>       
        <%
        Html.Telerik().ScriptRegistrar().Render();
        %>      
    </body>

Anything else I should do with version 2012.1.419 ?

Thanks
Jun

1 Answer, 1 is accepted

Sort by
0
Jun
Top achievements
Rank 1
answered on 24 May 2012, 06:48 PM
Just try it out in IE8, unfortunately we are seeing the same issue
Tags
General Discussions
Asked by
Jun
Top achievements
Rank 1
Answers by
Jun
Top achievements
Rank 1
Share this question
or