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

RadMenu is not seen when expanded

5 Answers 151 Views
Menu
This is a migrated thread and some comments may be shown as answers.
Equipo Desarrollo
Top achievements
Rank 1
Equipo Desarrollo asked on 19 Oct 2010, 09:25 AM
Good morning,

We are developing an application built of some "RadPanes". Top one holds the title. Below, we have a RadMenu, with some options, like File-->New, Edit,.... This pane's height is just the menuĀ“s height. Below this pane, we have another pane with a grid.

The problem is that, when we expand an option of the pane, the suboptions are not seen, as they are behind the grid's pane. It's not a fact of the grid, as we have tried removing it, but of the pane itself. It seems like the menu cannot expand over other pane. We have also tried several options with z-index, but nothing worked.

Do you know if menu cannot expand in this scenario? Any workaround is appreciated.

Thank you very much,

Jesus

5 Answers, 1 is accepted

Sort by
0
Accepted
Yana
Telerik team
answered on 22 Oct 2010, 10:52 AM
Hello Equipo,

You should set overflow: visible css styles to the pane that holds the menu like this:

<telerik:RadPane ID="RadPane1" runat="server" CssClass="menuPane">
    <telerik:RadMenu ID="RadMenu1" runat="server">
         
    </telerik:RadMenu>
</telerik:RadPane>

and add  "menuPane" css class:

.menuPane
{
    overflow: visible !important;
}

Regards,
Yana
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
0
Equipo Desarrollo
Top achievements
Rank 1
answered on 22 Oct 2010, 11:39 AM
Thank you very much, Yana,

It works great.

Thanks again.
0
Kevon Hayes
Top achievements
Rank 1
answered on 27 Dec 2010, 11:07 PM
This doesn't work for me as I do not have my menu wrapped in a RadPane it's in a .NET Usercontrol.  Could you suggest another workaround?
0
Yana
Telerik team
answered on 30 Dec 2010, 01:27 PM
Hello Kevon,

You should set "overflow: visible"  to the container which holds the menu. If this doesn't help, please send us a live url demonstrating the issue.

Regards,
Yana
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.
0
Kevon Hayes
Top achievements
Rank 1
answered on 30 Dec 2010, 02:12 PM
Telerik Devs:
Removing the RadMenu Attribute: ClientIDMode="Static" Fixed it.
Tags
Menu
Asked by
Equipo Desarrollo
Top achievements
Rank 1
Answers by
Yana
Telerik team
Equipo Desarrollo
Top achievements
Rank 1
Kevon Hayes
Top achievements
Rank 1
Share this question
or