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

Adding Menu Splitter

1 Answer 49 Views
Menu
This is a migrated thread and some comments may be shown as answers.
Natraj T
Top achievements
Rank 1
Natraj T asked on 08 Jul 2009, 10:22 AM
Hi,
Anyone help me to add menu splitter(divider, i.e a line between two menu items) in RadMenu. Is there any built in style to add this. This is urgent. Please help anyone

Thanks and Regards
Natraj

1 Answer, 1 is accepted

Sort by
0
Accepted
Paul
Telerik team
answered on 08 Jul 2009, 10:29 AM
Hello Natraj T,

You can easily achieve your goal by setting the IsSeparator property of the item to true.

<telerik:RadMenu runat="server" ID="RadMenu1"
<Items> 
    <telerik:RadMenuItem runat="server" Text="Root RadMenuItem1"
    <Items> 
        <telerik:RadMenuItem runat="server" Text="Child RadMenuItem 1"
        </telerik:RadMenuItem> 
        <telerik:RadMenuItem runat="server" IsSeparator="true"
        </telerik:RadMenuItem> 
        <telerik:RadMenuItem runat="server" Text="Child RadMenuItem 3"
        </telerik:RadMenuItem> 
    </Items> 
    </telerik:RadMenuItem> 
</Items> 
</telerik:RadMenu> 


Best wishes,
Paul
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
Tags
Menu
Asked by
Natraj T
Top achievements
Rank 1
Answers by
Paul
Telerik team
Share this question
or