Unplanned
Last Updated: 15 Aug 2017 09:41 by ADMIN
ADMIN
Created by: Georgi I. Georgiev
Comments: 0
Category: RibbonBar
Type: Feature Request
9
Add support for the RadRibbonBars to have their items merged while in MDI mode.
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: 13 Jan 2015 15:13 by ADMIN
FIX. RadRibbonForm prevents the Windows taskbar to show when taskbar AutoHide is on
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: 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: 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: 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;
    }
}
Declined
Last Updated: 17 Jun 2015 10:37 by ADMIN
ADMIN
Created by: Boryana
Comments: 1
Category: RibbonBar
Type: Bug Report
4
Using VS2012 RadRibbonForm's caption element is misplaced. As a result a horizontal black line appears below the title. Additionally, the system borders of the form are thinner that they are supposed to be.

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: 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.
Unplanned
Last Updated: 30 Mar 2016 10:50 by ADMIN
When Windows aero effects are enabled and the form width is being decreased, the title bar text appears over the title bar buttons and further more when continuing reducing the width of the form the buttons disappear and a small black rectangle is shown instead.
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.
Unplanned
Last Updated: 15 Aug 2017 10:02 by ADMIN
ADMIN
Created by: Dimitar
Comments: 2
Category: RibbonBar
Type: Feature Request
3
Add support for MDI list menu item.  
Completed
Last Updated: 27 Oct 2015 15:19 by Jesse Dyck
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: 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: 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 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: 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.
1 2 3 4 5 6