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: 13 Feb 2014 13:24 by ADMIN
IMPROVE. RadRibbonBar - add ability to theme the split button for this control (i.e. SplitButtonInRibbon)
Completed
Last Updated: 20 Nov 2012 04:08 by ADMIN
According to the design guidelines, the width of a ContextualTab is determined by the sum of the widths of the RibbonTabs. However, there are cases where the width of the containing tabs is less than the width needed by the ContextualTab to display its text. To handle this case, we should allow the users to set the width of the ContextualTabs.

WORKAROUND: increase the size of the inner tabs:
 private void radButton1_Click(object sender, EventArgs e)
        {
            ribbonTab1.MinSize = new Size(ribbonTab1.Size.Width+60, 0);
            radRibbonBar1.RibbonBarElement.InvalidateMeasure(true);
            radRibbonBar1.RibbonBarElement.UpdateLayout();
            radRibbonBar1.RibbonBarElement.RibbonCaption.CaptionLayout.InvalidateMeasure(true);
            radRibbonBar1.RibbonBarElement.RibbonCaption.CaptionLayout.UpdateLayout();
        }
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: 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: 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: 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: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: 30 Oct 2017 10:18 by ADMIN
The new functionality should provide a way to apply an offset to the position of the key tip as well as customize their back and fore colors as well as the font
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: 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: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: 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: 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: 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.
1 2 3 4 5 6