RadMenu for ASP.NET

Create scrollable items Send comments on this topic.
See Also
Controlling the visual appearance > How to > Create scrollable items

Glossary Item Box

Creating scrollable items

To create scrollable items just set the GroupSettings-Height property for vertical groups or the GroupSettings-Width for horizontal groups to a value less than the height or width of the child items group. For example:

  Copy Code
<rad:RadMenu ID="RadMenu1" Skin="Outlook" runat="server">
   
<Items>
       
<rad:RadMenuItem runat="server" Text="Root RadMenuItem">
       
</rad:RadMenuItem>
       
<rad:RadMenuItem runat="server" Text="This" GroupSettings-Height="100">
           
<Items>
               
<rad:RadMenuItem runat="server" Text="Child RadMenuItem">
               
</rad:RadMenuItem>
               
<rad:RadMenuItem runat="server" Text="Child RadMenuItem">
               
</rad:RadMenuItem>
               
<rad:RadMenuItem runat="server" Text="Child RadMenuItem">
               
</rad:RadMenuItem>
               
<rad:RadMenuItem runat="server" Text="Child RadMenuItem">
               
</rad:RadMenuItem>
               
<rad:RadMenuItem runat="server" Text="Child RadMenuItem">
               
</rad:RadMenuItem>
               
<rad:RadMenuItem runat="server" Text="Child RadMenuItem">
               
</rad:RadMenuItem>
               
<rad:RadMenuItem runat="server" Text="Child RadMenuItem">
               
</rad:RadMenuItem>
           
</Items>
       
</rad:RadMenuItem>
       
<rad:RadMenuItem runat="server" Text="Root RadMenuItem">
       
</rad:RadMenuItem>
   
</Items>
</
rad:RadMenu>

The above code will yield the following:

Scrollable

See Also