RadMenu items groups support scrolling. If the overall height / width of the items exceeds the predefined group's height / width, scrolling arrows will appear.
- If the RadMenuItem.GroupSettings.Height property is specified
and the size of the content exceeds that height - vertical scrolling will be
enabled.
-
If the RadMenuItem.GroupSettings.Width property is specified
and the size of the content exceeds that width - horizontal scrolling
will be enabled.
<telerik:RadMenu ID="RadMenu1" runat="server" Skin="Outlook">
<Items>
<telerik:RadMenuItem Text="Corporate">
<GroupSettings Height="100px"></GroupSettings>
<Items>
...
</Items>
</telerik:RadMenuItem>
<telerik:RadMenuItem Text="Products">
<GroupSettings Width="200px" Flow="Horizontal"></GroupSettings>
<Items>
...
</Items>
</telerik:RadMenuItem>
</Items>
</telerik:RadMenu>