I have used RadMenu version 2009.1.414.20, I want to set height of the RadMenu so that scroll will appear if menu items exceeds from mentioned height.
By using EnableAutoScroll="true" i am able to get scrollbar with respect to screen height but i want to set height of the RadMenuItems.
Below is the code, which i have used.
<
telerik:RadMenu Skin="Custom" EnableEmbeddedSkins="false" BorderWidth="0px" ID="RadMenu1" EnableScreenBoundaryDetection="false" EnableAutoScroll="true" EnableRootItemScroll="true"
runat="server" DataTextField="ScreenName" DataValueField="ScreenID" DataFieldID="ScreenID"
DataFieldParentID="ParentID" OnItemDataBound="RadMenu1_ItemDataBound" OnItemClick="RadMenu1_ItemClick">
<CollapseAnimation Duration="200" Type="OutQuint" />
</telerik:RadMenu>
Let me know if you have any solution?
| protected void uxGrid_OnItemDataBound(Object sender, GridItemEventArgs e) | |
| { | |
| if (e.Item.ItemType == GridItemType.Item || e.Item.ItemType == GridItemType.AlternatingItem) | |
| { | |
| e.Item.CssClass += " foo"; | |
| } | |
| } |
| <tr class="rgRow" id="..."> |
| <tr class="rgRow foo" id="..."> |
| <tr class=" foo" id="..."> |