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: 25 Mar 2015 14:19 by ADMIN
With particular cultures the alt key is used for specific symbols and this is why the user should be able to use one of the alt key for symbols and the other one for the key tips.
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: 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: 12 Oct 2022 13:07 by ADMIN
Release R3 2022 (LIB 2022.2.711)

Follow the steps:

1- Add RadRibbonBar1 to the form. The program compiles successfully.
2- Add RibbonTab1 to the RibbonBar. The program compiles successfully.
3. Add RadRibbonBarGroup1. The program does not compile and the mentioned error appears.

Error 1 Invalid Resx file. Could not load type System.DelegateSerializationHolder, Telerik.WinControls.UI, Version=2022.2.622.40, Culture=neutral, PublicKeyToken=5bb2a467cbec794e which is used in the .RESX file.  Ensure that the necessary references have been added to your project. Line 142, position 5. C:\Projects\1570764TestRibbonResx\1570764TestRibbonResx\RadForm1.resx 142 5 1570764TestRibbonResx

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);
Completed
Last Updated: 10 Nov 2015 12:35 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 & office 2007 app menu, 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.QuickAccessToolBar.RadPropertyChanged += QuickAccessToolBar_RadPropertyChanged;

private void QuickAccessToolBar_RadPropertyChanged(object sender, Telerik.WinControls.RadPropertyChangedEventArgs e)
        {
            if (e.Property.Name == "QuickAccessToolbarBelowRibbonProperty")
            {
                if (this.radRibbonBar1.RibbonBarElement.QuickAccessToolbarBelowRibbon == true)
                {
                    this.radRibbonBar1.RibbonBarElement.RibbonCaption.Margin = new Padding(-15, 0, 0, 0); 
                }
                else
                {
                    this.radRibbonBar1.RibbonBarElement.RibbonCaption.Margin = new Padding(0); 
                }
            }
        }
Completed
Last Updated: 16 Oct 2015 10:38 by ADMIN
To reproduce:
1.Create a RadRibbonForm and add a QuickAccessToolBar and a Contextual Tab Group
2.Use the following code:
public Form1()
{
    InitializeComponent();

    this.AllowAero = false;
    radRibbonBar1.RibbonBarElement.IconPrimitive.Visibility = ElementVisibility.Visible;
    ThemeResolutionService.ApplicationThemeName = "TelerikMetro";
}
3.Run the application. Position the QuickAccessToolBar below the ribbon via the drop down menu. Note that the Contextual Tab Group is shifted to the right.

Workaround:
this.radRibbonBar1.QuickAccessToolBar.RadPropertyChanged += QuickAccessToolBar_RadPropertyChanged;

private void QuickAccessToolBar_RadPropertyChanged(object sender, Telerik.WinControls.RadPropertyChangedEventArgs e)
{
    if (e.Property.Name == "QuickAccessToolbarBelowRibbonProperty")
    {
        if (this.radRibbonBar1.RibbonBarElement.QuickAccessToolbarBelowRibbon == true)
        {
            this.radRibbonBar1.RibbonBarElement.RibbonCaption.Margin = new Padding(-15, 0, 0, 0); 
        }
        else
        {
            this.radRibbonBar1.RibbonBarElement.RibbonCaption.Margin = new Padding(0); 
        }
    }
}
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.
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: 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.
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.
Unplanned
Last Updated: 25 Jun 2018 12:17 by ADMIN
Enable duplication of RadRibbonBar group's element.
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;