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

Hierachic context menu

2 Answers 32 Views
Menu
This is a migrated thread and some comments may be shown as answers.
Mats
Top achievements
Rank 1
Mats asked on 09 Nov 2009, 03:46 PM
Hi!

I use Q3 2009.

When showing a hierachic context menu with more than two levels then all context menus on third level or higher are rendered above the previous level of the context menu. This means all levels except the first is hidden by higher level context menus, making it very hard to use.

Is this by design or a bug? Any solution?

Thanks
/Mats

2 Answers, 1 is accepted

Sort by
0
Accepted
Yana
Telerik team
answered on 12 Nov 2009, 02:54 PM
Hi Mats,

I suggest you set ExpandDirection to 'Right' like this:

<telerik:RadContextMenu ID="RadContextMenu1" runat="server">
    <Items>
        <telerik:RadMenuItem Text="item 1">
            <items>
                <telerik:RadMenuItem Text="item 1 1">
                    <GroupSettings ExpandDirection="Right" />
                    <Items>
                        <telerik:RadMenuItem Text="item 1 1 1">
                            <GroupSettings ExpandDirection="Right" />
                            <Items>
                                <telerik:RadMenuItem Text="item 1 1 1 1" />
                            </Items>
                        </telerik:RadMenuItem>
                        <telerik:RadMenuItem Text="item 1  1 2" />
                    </Items>
                </telerik:RadMenuItem>
                <telerik:RadMenuItem Text="item 1 2" />
            </items>
        </telerik:RadMenuItem>
        <telerik:RadMenuItem Text="item 2" />
    </Items>
</telerik:RadContextMenu>


Greetings,
Yana
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
0
Mats
Top achievements
Rank 1
answered on 12 Nov 2009, 03:27 PM
Worked great!

Thanks
/Mats
Tags
Menu
Asked by
Mats
Top achievements
Rank 1
Answers by
Yana
Telerik team
Mats
Top achievements
Rank 1
Share this question
or