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

RAD Menu opens upside in IE

1 Answer 47 Views
Menu
This is a migrated thread and some comments may be shown as answers.
Tabrez
Top achievements
Rank 1
Tabrez asked on 01 Aug 2011, 02:01 PM
Hi,

When hover at menu item on IE, menu gets opens upside if there is no enough room down side.
Is it possible to force menu to always open down ward in IE.

This is good on other browsers e.g. Mozila, Safari, Chrome, Opera.

Thanks and Regards,
Tabrez

1 Answer, 1 is accepted

Sort by
0
Kate
Telerik team
answered on 01 Aug 2011, 04:07 PM
Hi Tabrez,

In order to force the RadMenu to open in the desired direction you can set the EnableScreenBoundaryDetection property of the RadMenu to false and set ExpandDirection property of the GroupSettings tag to the desired direction as demostrated below:
<telerik:RadMenu ID="RadMenu1" runat="server" EnableRoundedCorners="true" EnableShadows="true" EnableScreenBoundaryDetection="false">
           <Items>
               <telerik:RadMenuItem Text="About us">
                   <Items>
                       <telerik:RadMenuItem Text="Mission Statement">
                       </telerik:RadMenuItem>
                       <telerik:RadMenuItem Text="Strategic Plan">
                       </telerik:RadMenuItem>
                       <telerik:RadMenuItem Text="Executive Bios">
                       </telerik:RadMenuItem>
                       <telerik:RadMenuItem Text="Contact Us">
                       </telerik:RadMenuItem>
                   </Items>
               </telerik:RadMenuItem>
               <telerik:RadMenuItem Text="Products">
                   <GroupSettings ExpandDirection="Up"></GroupSettings>
<Items>
                       <telerik:RadMenuItem Text="Automotive">
                       </telerik:RadMenuItem>
                       <telerik:RadMenuItem Text="Machinery">
                       </telerik:RadMenuItem>
                       <telerik:RadMenuItem Text="Software">
                       </telerik:RadMenuItem>
                       <telerik:RadMenuItem Text="Customer Goods">
                       </telerik:RadMenuItem>
                   </Items>
               </telerik:RadMenuItem>
 </Items>
       </telerik:RadMenu>


Kind regards,
Kate
the Telerik team

Browse the vast support resources we have to jump start your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.

Tags
Menu
Asked by
Tabrez
Top achievements
Rank 1
Answers by
Kate
Telerik team
Share this question
or