Completed
Last Updated: 02 Jun 2022 06:38 by ADMIN
Release R2 2022 SP1

Hi,

please see the attached sample and screen shot.

If application with Ribbon Bar is moved to a high dpi display (or started on a 4K display), two issues happen:

  1. The title bar is not scaled (font) and has an ugly black line
  2. The drop down element font is not scaled (the list itself is correct)

Regards
Martin

Declined
Last Updated: 16 Jan 2020 09:17 by ADMIN
Created by: Chuck
Comments: 1
Category: RibbonBar
Type: Feature Request
0

Just a request to add in a RadFontDropDownListElement item to the RadRibbonBarGroup item list in the RadRibbonBar.

I am bypassing this by manually loading in the system fonts to a RadDropDownListElement but I could see the ease and appeal of having it already available. 

Completed
Last Updated: 06 Dec 2019 14:26 by ADMIN
Release R1 2020 (LIB 2019.3.1209)
Created by: Dominik
Comments: 2
Category: RibbonBar
Type: Feature Request
1
Currently, there is no way to replace the RibbonBarPopup.
Unplanned
Last Updated: 30 Oct 2019 02:53 by JeffSM
Created by: JeffSM
Comments: 2
Category: RibbonBar
Type: Bug Report
0

Dear,

look at video attached,

 

I'm using app theme resolution windows 7, but in RadRibbonForm the caption draw very awfull. This happens since always I use Telerik, but now I got some time to report to you.

ThemeResolutionService.ApplicationThemeName = "Windows7";

 

What I do?

Best,

 

Jeff

Unplanned
Last Updated: 03 Oct 2019 07:48 by ADMIN

Please refer to the attached sample project and follow the steps from the gif file. 

You will notice that each time a random group displays only images (no text) when the groups don't fit in the ribbon's width.

Workaround:

        public MDIForm()
        {
            InitializeComponent();
            this.radRibbonBar1.RibbonBarElement.ItemVisiblityStateChanging += this.RibbonBarElement_ItemVisiblityStateChanging;
        }

        private void RibbonBarElement_ItemVisiblityStateChanging(object sender, ItemVisiblityStateChangingEventArgs args)
        {
            if (args.NextVisibilityState == ChunkVisibilityState.NoText)
            {
                args.Cancel = true;
            }
        }

Completed
Last Updated: 22 Jul 2019 13:17 by ADMIN
Release R3 2019 (LIB 2019.2.729)
Create a RadRibbonForm.
Set the ApplicationMenuStyle of RibbonBar to BackstageView
Run the form and maximize it.
Open BackstageView and then click the Restore button of the form.
You will see that BackstageView bounds are not correct(see attached images).
Completed
Last Updated: 22 Jul 2019 13:28 by ADMIN
Release R3 2019 (LIB 2019.2.729)
Create a RadRibbonForm.
Set the ApplicationMenuStyle of RibbonBar to BackstageView
Run the form and maximize it.
Open BackstageView and you will see that part of the form is drawn outside of the screen.
Completed
Last Updated: 15 Jul 2019 10:42 by ADMIN
Release R3 2019 (LIB 2019.2.722)
Created by: GLENN
Comments: 1
Category: RibbonBar
Type: Bug Report
1
Create a RadRibbonForm.
Set the ThemeName to Office2013Light.
There is a double blue border on the left and right of RadRibbonBar.
Completed
Last Updated: 15 Jul 2019 08:32 by ADMIN
Release R3 2019 (LIB 2019.2.722)
Created by: Valery
Comments: 0
Category: RibbonBar
Type: Bug Report
0
When changing the layout mode and a button has no text an exception occurs.

Workaround: 

- Set the text of all buttons to an empty string. 
Completed
Last Updated: 01 Jul 2019 14:56 by ADMIN
Release R3 2019 (LIB 2019.2.708)
Maximizing the form cuts off the RadRibbonBar and decreases the content padding.
Completed
Last Updated: 01 Jul 2019 14:58 by ADMIN
Release R3 2019 (LIB 2019.2.708)

Please refer to the attached sample project and follow the steps from the gif file. 

Shrink the ribbon to create sub groups for expanding. Then, maximize the form. You will notice that the groups are still collapsed although there is so much space.

Unplanned
Last Updated: 20 May 2019 10:48 by ADMIN
It would be good to have any indication that there are more button items in the backstage view. Currently, RadRibbonBar neither shows scrollbars, no overflow button
Completed
Last Updated: 03 Jun 2019 04:41 by ADMIN
Release R2 2019 SP1

When the size is reduced the button's text is hidden and the popup occurs. One should be able to directly go to the collapsed mode without showing buttons with no text. 

The attached project shows a temporary solution. 

Completed
Last Updated: 23 Jan 2020 11:55 by ADMIN
Release R1 2020 SP1 (LIB 2020_1_127)
Created by: M.
Comments: 5
Category: RibbonBar
Type: Bug Report
1

Hello,

 

you will find in attached image the problem for File Tab button regarding its look in the editor and when running the application. How can I resolve this difference ?

 

Best regards

Completed
Last Updated: 27 Mar 2019 11:44 by Dimitar

Structure:

  • Add a RadRibbonBar
  • Add a RibbonTab
  • Add a RadRibbonBarGroup
  • Add a button in the group
  • Clicked event of button must do a FileFolderDialog.ShowDialog()

 

How to reproduce:

  • reduce (collapse) the RadRibbonBar with the ^ button on the far right
  • click on the button that will show the DialogForm

 

Result:

   the menu will be repainted over the dialogform

 

Using the Fluent theme.

Sometimes the popped up menu is just plain white, sometimes its painted correctly (showing buttons) but always over the DialogForm.

 

thanks

Completed
Last Updated: 27 Mar 2019 16:50 by Dimitar
Problem similar to issue 1385801. When a group is collapsed (not the tab, but the group) then there is no way to scroll the list of a gallery element in this group. Issue can be seen in Word-inspired project with Styles gallery in Home tab. Reduce form's width so that Styles group is collapsed and then open the group in a new popup and try to scroll down the list of the Styles gallery.
Declined
Last Updated: 01 Mar 2019 12:29 by ADMIN

When a form's width is reduced enough then some groups in ribbon bar will become collapsed and in group's place a drop-down arrow is shown. When this arrow is clicked it will show properly its active state in all themes except three Metro themes. In Metro themes arrow's active state is such that only upper half of the control is visible. The issue is shown in current documentation for RadRibbonBar in the following image:

 

 

Completed
Last Updated: 14 Feb 2019 16:34 by ADMIN
If ribbon group is collapsed and we open its drop-down panel and click on its dialog launcher then nothing happens. Observed in clean Word-inspired project (Font and Paragraph groups have launchers).
Completed
Last Updated: 31 Jan 2019 11:39 by ADMIN
Created by: Valery
Comments: 2
Category: RibbonBar
Type: Bug Report
0

In RadDropDownListElement add two DescriptionTextListDataItem:

            radDropDownListElementFoo.Items.Add(new DescriptionTextListDataItem("Foo 1", "Description 1"));
            radDropDownListElementFoo.Items.Add(new DescriptionTextListDataItem("Foo 2", "Description 2"));

But the description is not displayed and the drop down height is too large (foo.png)

What am I doing wrong?

If change ItemHeight = 36, then description is displayed, but the drop down height is too large (foo36.png)

Completed
Last Updated: 17 Dec 2018 17:10 by Dimitar
ADMIN
Created by: Dimitar
Comments: 0
Category: RibbonBar
Type: Bug Report
0
To reproduce:
Open a form with a ribbon, focus the tabs and press 1 with the screen keyboard (German language). 

Workaround:
class MyRibbon : RadRibbonBar
{
    protected override ComponentInputBehavior CreateBehavior()
    {
   
        return new MyComponentBehavior(this);
    }
    public override string ThemeClassName
    {
        get { return typeof(RadRibbonBar).FullName; }
    }
}
class MyComponentBehavior : RibbonBarInputBehavior
{
    public MyComponentBehavior(RadRibbonBar owner) : base(owner)
    {

    }
    protected override string GetKeyStringRepresentation(Keys input)
    {
        uint nonVirtualKey = NativeMethods.MapVirtualKey((uint)input, 2);

        if (nonVirtualKey > char.MaxValue)
        {
            return null;
        }

        return base.GetKeyStringRepresentation(input);
    }
}