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: 5 Jun 2014 07:07 by ADMIN
Currently the Keytips in the Ribbonbar and cannot process some chars like "Ä", "Ü", "Ö" and "ß".
Completed
Last Updated: 5 Jun 2014 07:07 by ADMIN
The keytips not activating after splash form is closed and alt key is pressed. For the keytips of RadRibbonBar to break, the splash form (or any other form that appears before the form containing RadRibbonBar) should contain a RadControl. The workaround is to unregister the shortcuts that the RadControl in the splash form has. For example: ChordMessageFilter.UnregisterChordsConsumer(this.radTitleBar1.Behavior.Shortcuts); This line assumes that there is a RadTitleBar on the splash form.
Completed
Last Updated: 5 Jun 2014 07:08 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: RibbonBar
Type: Bug Report
2
It will be nice if RadRibbonBar has the QuickAccessToolbar property exposed in the property grid of Visual Studio, just like ExpandButton, ExitButton, etc.
Completed
Last Updated: 13 Feb 2012 13:40 by Svetlin
Metro theme for RadRibborBar has glitches for the application menu and quick access bar.
Completed
Last Updated: 15 Dec 2015 14:11 by ADMIN
To Reproduce:
            this.AllowAero = false;
            this.radRibbonBar1.RibbonBarElement.RibbonCaption.MinimizeButton.Visibility = Telerik.WinControls.ElementVisibility.Collapsed;
            this.radRibbonBar1.RibbonBarElement.RibbonCaption.MaximizeButton.Visibility = Telerik.WinControls.ElementVisibility.Collapsed;
Completed
Last Updated: 11 Nov 2015 12:11 by ADMIN
FIX. RadRibbonForm - theme is not applying correctly, when some changes are made to ribbon button while RadRibbonBar is collapsed.

Steps to reproduce:
1. Add button to some ribbon group.
2. Collapse the ribbon.
3. Disable this button.
4. Enable this button.
5. Expand the ribbon.

Workaround - subscribe to ExpandedStateChanged  event and reapply the theme. For example:

            this.radRibbonBar1.ExpandedStateChanged += new EventHandler(radRibbonBar1_ExpandedStateChanged);


        void radRibbonBar1_ExpandedStateChanged(object sender, EventArgs e)
        {
            this.radRibbonBar1.ElementTree.ApplyThemeToElementTree();
        }
Completed
Last Updated: 13 Jul 2011 06:03 by ADMIN
ADMIN
Created by: Boryana
Comments: 0
Category: RibbonBar
Type: Bug Report
2
Setting the Visibility property of QuickAccessToolBar to collapsed results in collapsed RadRibbonBar TitleBar.
Completed
Last Updated: 23 Dec 2011 10:20 by ADMIN
BackstageView changes its location when it is opened on a RadRibbonForm and the form gets maximized.
Unplanned
Last Updated: 25 Jun 2018 12:17 by ADMIN
Enable duplication of RadRibbonBar group's element.
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: 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: 1 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.
Unplanned
Last Updated: 15 Aug 2017 09:33 by ADMIN
add additional minimize options:
    - minimize to panel titles
    - minimize to panel buttons
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: 15 Feb 2012 08:04 by ADMIN
Completed
Last Updated: 30 Apr 2012 08:25 by ADMIN
FIX. RadRibbonBar - the Click event of the OptionsButton is fired twice
Completed
Last Updated: 11 Aug 2011 09:11 by ADMIN
ADMIN
Created by: Stefan
Comments: 0
Category: RibbonBar
Type: Feature Request
2
ADD. RadRibbonBar - add cancelable CommandTabChanging event.
The event is called CommandTabSelecting to be coherent with the older event CommandTabSelected.
Completed
Last Updated: 30 Dec 2011 04:28 by ADMIN
Steps to reproduce.

1. Add a form with a RadRibbonBar 
2. Add a RadCheckBox to the ribbon
3. Set the IsThreeState property of the check box to true
4. Run the project and click through the states of the check box. You will see that the checked and indeterminate states are looking the same way.
Completed
Last Updated: 16 Oct 2015 10:12 by ADMIN
Steps to reproduce:
1.Open the ThemeViewer and select a random theme (e.g. TelerikMetro)
2.Click the "Show Form" button, related to "ribbonbar & backstage view, status strip". As a result a RadRibbonForm is shown. Notice that it has a form icon and a QuickAccessToolBar.
3.Click on the arrow button in the QuickAccessToolBar and select "Show below the Ribbon".
Note that the BackColor behind the form's icon is not correct.

Workaround: this.radRibbonBar1.RibbonBarElement.CaptionFill.Margin = new Padding(-20, 0, 0, 0);