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

Application Menu button position

1 Answer 103 Views
RibbonBar
This is a migrated thread and some comments may be shown as answers.
Paul
Top achievements
Rank 1
Paul asked on 08 Jul 2011, 10:41 AM
Hi

I'm just evaluating the ribbon bar control, but what I'd like to do is not have a quick access toolbar, which I have changed the attribute value to collapsed, but the problem I have now is that the application menu button is wrongly positioned. (See Attached)

I've adjusted the offset to put it further up but the problem I have is that to click the button you still have to click where the button was previously and not the offset.

Is this a problem or is there a way around it?

Many Thanks

Paul

1 Answer, 1 is accepted

Sort by
0
Boryana
Telerik team
answered on 13 Jul 2011, 05:28 PM
Hello Paul,

Thank you for contacting us.

Before getting to your question I would like to mention that the screenshot you provided implies that you are using a standard MS form and a RadRibbonBar. Please note that our team highly recommends you to use a RadRibbonForm instead of the above combination.

The behavior you experience comes from the fact that setting the visibility of the QuickAccessToolBar to collapsed hides the title bar of RadRibbonBar. This comes from the layout of RadRibbonBar and we would do our best to improve it in one of our future releases. The issue is already logged in our Public Issue Tracking System and you will be able to track its status from here.

Currently, I can suggest to hide the QuickAccessToolBar in the following manner:

foreach (RadElement element in this.radRibbonBar1.RibbonBarElement.QuickAccessToolBar.Children)
{
   element.Visibility = ElementVisibility.Collapsed;
}
this.radRibbonBar1.RibbonBarElement.QuickAccessToolBar.Visibility = ElementVisibility.Hidden;

Our team would like to thank you for your feedback. Your Telerik points have been updated.

I hope you find my answer useful. Let me know if you have further questions. I will be more than happy to assists you.

Greetings,
Boryana
the Telerik team

Register for the Q2 2011 What's New Webinar Week. Mark your calendar for the week starting July 18th and book your seat for a walk through of all the exciting stuff we will ship with the new release!

Tags
RibbonBar
Asked by
Paul
Top achievements
Rank 1
Answers by
Boryana
Telerik team
Share this question
or