7 Answers, 1 is accepted
Thank you for writing.
Like other menu implementations, RadMenu behavior is to wrap its items. It does not support scrolling. Nevertheless, this is an interesting feature and I added it in our issue tracking system. If more people request the same, we will consider implementing it. Here is a link to the request where you can add your vote for it: http://www.telerik.com/support/pits.aspx#/public/winforms/10552.
Should you have other questions, do not hesitate to contact us.
Kind regards,
Jack
the Telerik team
Hi.
I am using RadMenu when my menu root items count is more than of my parent container size i want to be scrolled.
I want scroll radmenu on Arrow Up and Arrow down image from server side code .
what is your suggestion?
Thanks Akhil Tyagi
@RadMenu
Thank you for writing.
RadMenu is auto sized according to its content items and the available Form.Size. In order to make it scrollable it is suitable to use RadScrollablePanel and put the RadMenu inside it.
for
(
int
i = 0; i < 50; i++)
{
RadMenuItem item =
new
RadMenuItem();
item.Text =
"Item"
+ i;
this
.radMenu1.Items.Add(item);
}
this
.radScrollablePanel1.VerticalScrollbar.Width = 10;
this
.radScrollablePanel1.VerticalScrollbar.ScrollBarElement.ThumbElement.Visibility = Telerik.WinControls.ElementVisibility.Collapsed;
I hope this information helps. Should you have further questions, I would be glad to help.
Dess
Telerik
See What's Next in App Development. Register for TelerikNEXT.
HI I have already my RadMenu control inside the RadCollapsiblePanel I need RadCollapsiblePanel with menu scrolling
Thanks
Akhil Tyagi
Hi Admin
I need this kind of menu (Attached Image) Menu inside RadCollapsiblePanel which control are you using for menu inside RadCollapsiblePanel panel
if this is RadListControl how can I set border after every element I tried
args.VisualItem.BorderColor = Color.Blue;
in ListControl_VisualItemFormatting function but not gives border after items I already refer this link
http://www.telerik.com/help/winforms/dropdown-and-listcontrol-dropdownlist-customizing-items.html
but not able to get Bottom Border of items.
Thanks Akhil Tyagi
Thank you for writing back.
Please refer to our Collapsible menu from Demo application KB article which demonstrates a sample approach how to achieve the collapsible menu from Demo application.
I hope this information helps. If you have any additional questions, please let me know.
Regards,
Dess
Telerik
See What's Next in App Development. Register for TelerikNEXT.