This is a migrated thread and some comments may be shown as answers.

RadMenu Root Items Scrolling

7 Answers 127 Views
Menu
This is a migrated thread and some comments may be shown as answers.
Ah
Top achievements
Rank 1
Ah asked on 02 Apr 2012, 08:54 AM
Hi.

I am using RadMenu when my menu root items count is more than of my parent container size i want to be scrolled.

what is your suggestion?

7 Answers, 1 is accepted

Sort by
0
Jack
Telerik team
answered on 04 Apr 2012, 09:07 AM
Hi Ahmad,

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
RadControls for WinForms Q1'12 release is now live! Check out what's new or download a free trial >>
0
akhil
Top achievements
Rank 1
answered on 23 Apr 2015, 01:12 PM

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

0
Dess | Tech Support Engineer, Principal
Telerik team
answered on 24 Apr 2015, 01:49 PM
Hello Akhil,

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.
 
Regards,
Dess
Telerik
 

See What's Next in App Development. Register for TelerikNEXT.

 
0
akhil
Top achievements
Rank 1
answered on 24 Apr 2015, 03:29 PM

HI I have already my RadMenu control inside the RadCollapsiblePanel I need RadCollapsiblePanel with menu scrolling

Thanks

Akhil Tyagi

0
akhil
Top achievements
Rank 1
answered on 25 Apr 2015, 08:51 AM

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

0
Dess | Tech Support Engineer, Principal
Telerik team
answered on 27 Apr 2015, 07:18 AM
Hello Akhil,

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.

 
0
akhil
Top achievements
Rank 1
answered on 27 Apr 2015, 12:11 PM
Thanks a lot for your effort @Dess 
Tags
Menu
Asked by
Ah
Top achievements
Rank 1
Answers by
Jack
Telerik team
akhil
Top achievements
Rank 1
Dess | Tech Support Engineer, Principal
Telerik team
Share this question
or