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

Menu Left To Right

2 Answers 64 Views
Menu
This is a migrated thread and some comments may be shown as answers.
Giuseppe
Top achievements
Rank 1
Giuseppe asked on 09 Oct 2013, 12:09 PM
Hi,

is there a possibility to mix the directions of the menu in aspx?

I mean the Root Left to Right and the inner Items Right to Left as usual.

2 Answers, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 10 Oct 2013, 03:35 AM
Hi Giuseppe,

Please try the following code snippet that I tried which works fine at my end. To Expand an Item from  Right to left set EnableScreenBoundaryDetection as false and GroupSettings-ExpandDirection to Left .Please check this help documentation.

ASPX:
<telerik:RadMenu ID="RadMenu1" runat="server" EnableScreenBoundaryDetection="false">
    <Items>
        <telerik:RadMenuItem Text="Item" runat="server">
        </telerik:RadMenuItem>
        <telerik:RadMenuItem Text="item1" runat="server">
        </telerik:RadMenuItem>
        <telerik:RadMenuItem Text="Item2" runat="server">
            <Items>
                <telerik:RadMenuItem Text="Item2.1" runat="server" GroupSettings-ExpandDirection="Left">
                    <Items>
                        <telerik:RadMenuItem Text="Item2.1.1" runat="server">
                        </telerik:RadMenuItem>
                        <telerik:RadMenuItem Text="Item2.1.2" runat="server">
                        </telerik:RadMenuItem>
                    </Items>
                </telerik:RadMenuItem>
                <telerik:RadMenuItem Text="Item2.2" runat="server" GroupSettings-ExpandDirection="Left">
                    <Items>
                        <telerik:RadMenuItem Text="Item2.2.1" runat="server">
                        </telerik:RadMenuItem>
                        <telerik:RadMenuItem Text="Item2.2.2" runat="server">
                        </telerik:RadMenuItem>
                    </Items>
                </telerik:RadMenuItem>
            </Items>
        </telerik:RadMenuItem>
    </Items>
</telerik:RadMenu>

Thanks,
Princy.
0
Giuseppe
Top achievements
Rank 1
answered on 11 Oct 2013, 01:10 PM
The real problem was a bug in Metro Style.
Tags
Menu
Asked by
Giuseppe
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
Giuseppe
Top achievements
Rank 1
Share this question
or