Completed
Last Updated: 13 Jan 2015 15:13 by ADMIN
FIX. RadRibbonForm prevents the Windows taskbar to show when taskbar AutoHide is on
Completed
Last Updated: 24 Nov 2010 05:41 by ADMIN
Removing the minimize and maximize buttons when Windows aero effects are enabled is not possible neither through the form properties neither through the ribbon bar element.
Completed
Last Updated: 04 Mar 2013 01:06 by ADMIN
To reproroduce:
- open the smart tag and uncheck the ShowBorder check box.
- save, close and reopen the form

WORKAROUND: set the property in code
radRibbonBarButtonGroup1.ShowBorder = false;
Completed
Last Updated: 06 Jun 2017 06:55 by ADMIN
You have a scenario where there is a maximized MDI child form in a RadRibbonForm. You try to close the maximized child form from the MDI box of RadRibbonBar, but instead of getting the form closed, you programmatically hide it, so that you can reuse it further. The moment you try to show that form again, it appears non-maximized which is not a correct behavior.
Completed
Last Updated: 13 Nov 2015 08:58 by ADMIN
To reproduce:

Add a RadRibbonBar to a Form. Add a RadTextBox to the bottom of the Form. Start the application, click the textbox and press the alt key. You will see that the focus will be taken away. This does not allow you to input key combinations into RadTextBox, such as Alt + 457.


Workaround:

Use the following custom RadRibbonBar:

public class MyRadRibbonBar : RadRibbonBar
{
    protected override ComponentInputBehavior CreateBehavior()
    {
        return new MyRibbonBarInputBehavior(this);
    }


    public override string ThemeClassName
    {
        get
        {
            return typeof(RadRibbonBar).FullName;
        }
        set
        {
        }
    }
}


class MyRibbonBarInputBehavior : RadRibbonBar.RibbonBarInputBehavior
{
    public MyRibbonBarInputBehavior(RadRibbonBar owner)
        : base(owner)
    {
    }


    protected override bool SetInternalKeyMapFocus()
    {
        if ((this.Owner as RadRibbonBar).ContainsFocus)
        {
            return base.SetInternalKeyMapFocus();
        }


        return false;
    }
}
Completed
Last Updated: 15 Feb 2014 11:02 by Jesse Dyck
The Click event is fired for another element instead for the element where the MouseDown event is fired in RadRibbonBar.
Completed
Last Updated: 23 Jul 2015 16:20 by ADMIN
1. You need to have the Controls Suite installed
2. Add a new RadRibbonBarForm to the project using the add new item dialog
3. You will see that the RadRibbonBar that is within the RadRibbonBarForm has some glitches
Completed
Last Updated: 30 Jan 2013 04:35 by ADMIN
1. Create a new project with RadRibbonForm.
2. Set the ApplicationMenuStyle to BackstageView.
3. Add two buttons inside the backstage view. The first one should change the theme to Windows 7 and the second one to TelerikMetro.
4. Run the project and observe how application button position changes when changing the theme.
Completed
Last Updated: 17 Nov 2015 16:27 by ADMIN
The order of the tabs under the 'Edit CommandTabs' dialog is wrong after deleting all the contextual tabs.
Completed
Last Updated: 27 Oct 2015 15:19 by Jesse Dyck
Completed
Last Updated: 27 Mar 2023 06:39 by ADMIN
Release R1 2023 SP1
1. Change the theme to FluentDark using the dropdown located at the very top left of the app form (it should say Fluent as default). 
2. Select the Administration View ribbon group, located at the very left of the form ribbon
3. Select any option from the dropdown menu that appears 
You should see that the borders around the ribbon groups appear, and  once the mouse hovers over a collection is 'refreshes' them and the issue is then not repeatable for that group of buttons (even after another theme change). As mentioned in the previous ticket, this issue is only repeatable once per application launch
Completed
Last Updated: 09 Mar 2012 11:43 by ADMIN
The button that opens the BackstageView is not correctly placed when the ribbon is placed on a RadRibbonForm with aero turned on.
Completed
Last Updated: 17 Nov 2015 16:25 by ADMIN
Steps to reproduce:

1. Add a RadRibbonBar to a form
2. Set it to be in Backstage mode
3. Add several items in the Backstage menu
4. Set their text to contain the & sign and set UseMnemonics to true on each menu item

Run the project and press Alt you will see that the letters preceded by an & are not underscored.
Completed
Last Updated: 27 Oct 2015 09:55 by ADMIN
ADMIN
Created by: Paul
Comments: 0
Category: RibbonBar
Type: Bug Report
3
If the ribbon is collapsed and the user clicks a command tab to show the ribbon, and then uses Alt-Tab or another non-mouse method to switch to another application, the ribbon menu is 'stuck' and shows above all other windows. 
Switching back to the ribbon application and clicking will hide the ribbon. Using the mouse to click to another application does not have the same issue.
Completed
Last Updated: 16 Oct 2015 10:23 by ADMIN
Attempt to assign two RadButtonElements in RadRibbonBar the same Name at design time results with an Exception dialog instead of the standard dialog.
Completed
Last Updated: 01 Apr 2013 03:40 by ADMIN
1. Create a new project with RadRibbonBar. 2. Set the ApplicationMenuStyle to BackstageView 3. Change the application theme to Office2010Blue when handling Form.Load event. 4. Run the project.
Completed
Last Updated: 17 Nov 2015 16:26 by ADMIN
To reproduce:
Create a RadRibbonForm
Add tab, groups and buttons
Add an ImageList and changed the buttons ImageKey
Minimized the ribbon
Click the tab

Workaround:
Use the image property of the button - 
buttonElement.Image = Image.FromFile(@"image.png");
Completed
Last Updated: 26 Oct 2015 16:35 by ADMIN
ADMIN
Created by: Georgi I. Georgiev
Comments: 0
Category: RibbonBar
Type: Bug Report
2
To reproduce: Add a ribbon bar with tabs and items inside. Press alt key and select some tab, in some tabs the children items KeyTIps will not appear.
Completed
Last Updated: 02 Jun 2022 06:33 by ADMIN
Release R2 2022 SP1
ADMIN
Created by: Dess | Tech Support Engineer, Principal
Comments: 0
Category: RibbonBar
Type: Bug Report
2
Use the arrow on the right side of RadRibbonBar to collapse it. When click some of the tabs to show the popup.

Workaround: specify a minimum height for the popup:
        protected override void OnLoad(EventArgs e)
  {
            base.OnLoad(e);
            radRibbonBar1.Expanded = false;

            RibbonBarPopup pop = this.radRibbonBar1.RibbonBarElement.Popup;
            pop.PopupOpened += pop_PopupOpened;
        }

        private void pop_PopupOpened(object sender, EventArgs args)
        {
            RibbonBarPopup pop = sender as RibbonBarPopup;
            pop.MinimumSize = new Size(0, 150);
        }
Completed
Last Updated: 15 Feb 2012 08:04 by ADMIN
1 2 3 4 5 6