Upon some customers updating to the latest Internet Explorer (10.0.9200.16521); the RadMenu still displays as it always has, including submenus when hovering over, but when you click on an item, nothing happens.
Everything has been working just fine until the recent update of IE.
Anyone have any ideas?
Telerik.Web.UI.dll Version 2012.2.815.40
Clip from html
Behind scene loading the menu in VB
Processing click
Sample xml file
Everything has been working just fine until the recent update of IE.
Anyone have any ideas?
Telerik.Web.UI.dll Version 2012.2.815.40
Clip from html
<table>
<tr><td style="text-align:left"><telerik:RadMenu ID="Menu1" Skin="Office2010Blue" Runat="server" EnableRoundedCorners="true"></telerik:RadMenu></td></tr></table>Behind scene loading the menu in VB
Menu1.LoadContentFile("~/App_Data/InMenu.xml")Processing click
Protected Sub Menu1_ItemClick(sender As Object, e As Telerik.Web.UI.RadMenuEventArgs) Handles Menu1.ItemClick ProcessLoggedInMenu(e.Item.Text)End SubPrivate Sub ProcessLoggedInMenu(ByVal Item As String) Select Case Item Case "Home" : Response.Redirect("~/Main.aspx") Case "Webinars" : Response.Redirect("~/PrivateWebinars.aspx") Case "My Profile" : Response.Redirect("~/UserProfile.aspx") Case "Logout" FormsAuthentication.SignOut() S.KillCookie() Response.Redirect("~/Default.aspx") End SelectEnd SubSample xml file
<?xml version="1.0" encoding="utf-8" ?><Menu> <Group> <Item Text="Home"> </Item> <Item Value="Webinars" Text="Webinars" > </Item> <Item Value="Profile" Text="My Profile" > </Item> <Item Value="Log" Text="Logout" > </Item> </Group></Menu>