RadMenu for ASP.NET

Overview of Telerik RadMenu structure and appearance Send comments on this topic.
See Also
Feature overview > Overview of Telerik RadMenu structure and appearance

Glossary Item Box

Structure

A menu control consists of items grouped in the Items collection. Each RadMenuItem can also contain an Items collection with its own child items, etc., as demonstrated in Pic. 1.

Pic. 1

The Items collection 

  

 

 

 

ASPX Copy Code
<rad:RadMenu ID="RadMenu1">
   
<Items>
       
<rad:RadMenuItem Text="Root Item 1">
           
<Items>
               
<rad:RadMenuItem Text="Child Item 1.1">
                   
<Items>
                       
<rad:RadMenuItem Text="Child Item 1.1.1">
                       
</rad:RadMenuItem>
                       
<rad:RadMenuItem Text="Child Item 1.1.2">
                       
</rad:RadMenuItem>
                   
</Items>
               
</rad:RadMenuItem>
               
<rad:RadMenuItem Text="Child Item 1.2">
                   
<Items>
                       
<rad:RadMenuItem Text="Child Item 1.2.1">
                       
</rad:RadMenuItem>
                       
<rad:RadMenuItem Text="Child Item 1.2.2">
                       
</rad:RadMenuItem>
                   
</Items>
               
</rad:RadMenuItem>
           
</Items>
       
</rad:RadMenuItem>
       
<rad:RadMenuItem Text="Root Item 2">
       
</rad:RadMenuItem>
   
</Items>
</
rad:RadMenu>
        

 

The menu structure can be defined using one of the following methods:

Appearance

The visual appearance can be defined using skins

See Also