This question is locked. New answers and comments are not allowed.
It
works in version 2012.1.301, but after we update Telerik it to 2012.1.419
, it no longer works with IE8 and IE 9 - when we click the menu item, the
sub-menu item don't appear - it works in FireFox12.0 though.
Also jquery function like $("#logindisplay").load("/Home/ExitImpersonation") doesn't work in this version, either IE or firefox.
Is anyone seeing the same issue ? Below is part of the code for site.master:
Also jquery function like $("#logindisplay").load("/Home/ExitImpersonation") doesn't work in this version, either IE or firefox.
Is anyone seeing the same issue ? Below is part of the code for site.master:
<head runat="server"> <title> <asp:ContentPlaceHolder ID="TitleContent" runat="server" /> </title> <script type="text/javascript" src='<%=Page.ResolveUrl("~/Scripts/2012.1.419/jquery-1.7.2.min.js")%>'></script> <script type="text/javascript" src='<%=Page.ResolveUrl("~/Scripts/2012.1.419/telerik.common.min.js") %>'></script> <script type="text/javascript" src='<%=Page.ResolveUrl("~/Scripts/2012.1.419/telerik.menu.min.js") %>'></script> </head> <body> <div id="page"> <div id="header"> <div id="logo"> </div> <div id="logindisplay"> <% Html.RenderPartial("LogOnUserControl"); %> </div> <br /> <div id="menucontainer"> <% Html.Telerik() .Menu() .Name("resources") .HtmlAttributes(new { @class = "menu-bar" }) .OpenOnClick(true) .Items(menu => { menu.Add() .Text("Course") .Items(item => { item.Add().Text("By Lecture").Action("CampusQuery", "Home"); }); menu.Add() .Text("Video") .Items(item => { item.Add().Text("Query").Action("SearchVideo", "Video"); item.Add().Text("Upload").Action("UploadVideo", "Video"); }); }) .Render(); %> </div> </div> <div id="main"> <asp:ContentPlaceHolder ID="MainContent" runat="server" /> </div> <div id="footer"> </div> </div> <% Html.Telerik().ScriptRegistrar().jQuery(false).Render(); %> </body>