i think there is a bug , something in the highlightning gets inversed when you click a menu item, try this code:
click the first item, then hover on the second.
it also can highlight two menu items at the same time.
also how can i disable the highlightning upon hovering?
click the first item, then hover on the second.
it also can highlight two menu items at the same time.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %> <%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title></title> </head> <body dir="rtl"> <form id="form1" runat="server"> <telerik:RadScriptManager ID="RadScriptManager1" runat="server"> </telerik:RadScriptManager> <div> <telerik:RadMenu ID="RadMenu1" runat="server" style="padding-top:20px; padding-bottom: 30px;" EnableRoundedCorners="True" EnableShadows="True" Flow="Vertical" Skin="Outlook" ClickToOpen="True" CollapseDelay="100" EnableSelection="False"> <Items> <telerik:RadMenuItem Text="one"> <Items> <telerik:RadMenuItem Text="first" PostBack="False"/> <telerik:RadMenuItem runat="server" Text="second" PostBack="False"> </telerik:RadMenuItem> </Items> </telerik:RadMenuItem> <telerik:RadMenuItem Text="two"> <Items> <telerik:RadMenuItem Text="first" PostBack="False"/> <telerik:RadMenuItem runat="server" Text="second" PostBack="False"> </telerik:RadMenuItem> </Items> </telerik:RadMenuItem> <telerik:RadMenuItem Text="three" NavigateUrl="http://telerik.com" Target="_blank"> </telerik:RadMenuItem> </Items> <ExpandAnimation Duration="1000" /> </telerik:RadMenu> </div> </form> </body> </html> also how can i disable the highlightning upon hovering?