Hi there, I have a strange issue, that is also difficult to explain. Let me try.
I have an application with a RadMenu, in the attached sample you see two test items. No master pages.
I click on Item 1, Item 2 is correctly displayed. I move the mouse pointer down to highlight Item 2 BUT when the mouse hovers on the label (or the corresponding empty space on the label sides) the highlight disappears and the submenu collapses, as if I moved the mouse away from the menu.
This is the code, but is nothing fancy
This is the resulting HTML
I tried both the latest official release and the 429 internal build.
Any suggestion?
Thanks
Luca
I have an application with a RadMenu, in the attached sample you see two test items. No master pages.
I click on Item 1, Item 2 is correctly displayed. I move the mouse pointer down to highlight Item 2 BUT when the mouse hovers on the label (or the corresponding empty space on the label sides) the highlight disappears and the submenu collapses, as if I moved the mouse away from the menu.
This is the code, but is nothing fancy
mnuMain.Items.Clear(); |
mnuMain.Items.Add(new Telerik.Web.UI.RadMenuItem("item 1")); |
mnuMain.Items[0].Items.Add(new Telerik.Web.UI.RadMenuItem("item 2", "funnel.aspx")); |
<div id="MenuContainer" class="MenuContainer"> |
<div id="mnuMain" class="RadMenu RadMenu_Web20 rmSized" style="border-style:None;width:100%;"> |
<!-- 2010.1.429.20 --><ul class="rmRootGroup rmHorizontal"> |
<li class="rmItem rmFirst rmLast"><a href="#" class="rmLink rmRootLink"><span class="rmText">item 1</span></a><div class="rmSlide"> |
<ul class="rmHorizontal rmGroup rmLevel1"> |
<li class="rmItem rmFirst rmLast"><a href="funnel.aspx" class="rmLink"><span class="rmText">item 2</span></a></li> |
</ul> |
</div></li> |
</ul><input id="mnuMain_ClientState" name="mnuMain_ClientState" type="hidden" /> |
</div> |
Any suggestion?
Thanks
Luca