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

Scroll Issue

2 Answers 60 Views
RibbonView and RibbonWindow
This is a migrated thread and some comments may be shown as answers.
Scott Michetti
Top achievements
Rank 1
Scott Michetti asked on 04 Dec 2012, 07:32 PM
Hello. If I set the Width property of the RadRibbonGroup, the scrolling does not go all the way over. See attached screenshots. If I remove the Width property, the scrolling works fine. I set the width because I place different controls in the group and the sizing isn't correct unless I set the size. Is there any way to get this to work?

<

 

 

telerik:RadRibbonGroup Header="Test2" Width="300">

Thanks
Scott

 

2 Answers, 1 is accepted

Sort by
0
Zarko
Telerik team
answered on 07 Dec 2012, 01:45 PM
Hi Scott,
Thank you for the feedback! There's a know issue with the scrolling if you set width to the RibbonGroups and you can track it here. In order to make this work you'll have to remove the size of your groups and set width to their content instead with something like this:
<telerik:RadRibbonGroup Header="Testing group">
    <telerik:RadRibbonButton Width="80" Text="Test" />
    <telerik:RadRibbonButton Width="50" Text="Test" />
    <telerik:RadRibbonButton Text="Test" />
    <telerik:RadRibbonButton Text="Test" />
    <telerik:RadRibbonButton Width="30" Text="Test" />
</telerik:RadRibbonGroup>
or
<StackPanel Width="300" Orientation="Horizontal">
    <telerik:RadRibbonButton Text="Test" />
    <telerik:RadRibbonButton Text="Test" />
    <telerik:RadRibbonButton Text="Test" />
    <telerik:RadRibbonButton Text="Test" />
    <telerik:RadRibbonButton Text="Test" />
</StackPanel>
I've attached a sample project so could you please examine it and if you have further questions feel free to ask.

Kind regards,
Zarko
the Telerik team

Explore the entire Telerik portfolio by downloading Telerik DevCraft Ultimate.

0
Scott Michetti
Top achievements
Rank 1
answered on 07 Dec 2012, 02:47 PM
Thanks Zarko. That fixed the problem.

Scott
Tags
RibbonView and RibbonWindow
Asked by
Scott Michetti
Top achievements
Rank 1
Answers by
Zarko
Telerik team
Scott Michetti
Top achievements
Rank 1
Share this question
or