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: 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: 06 Jan 2011 03:47 by ADMIN
The drop down of QuickAccessToolBar does not close when its drop down button is clicked while the drop down is opened
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: 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: 05 Jun 2014 07:08 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: RibbonBar
Type: Bug Report
0
If you maximize an mdi child form in a mdi parent, the buttons of the child form appear in the title bar of the parent form, but not in the tabstrip of the RadRibbonBar contained in the parent form.
Declined
Last Updated: 13 Nov 2015 09:02 by ADMIN
ADMIN
Created by: Nikolay
Comments: 1
Category: RibbonBar
Type: Bug Report
0
Put a textbox and RadRibbonBar on a form with enabled key map. Press Alt + 64. You should get "@" in the textbox. Instead, you get the key tips displayed.

Workaround:
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: 26 Oct 2015 15:24 by ADMIN
The NumPad keys should work in a KeyTip scenario. However, currently they do not affect the behavior of RadRibbonBar.
Completed
Last Updated: 05 Jun 2014 07:08 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: RibbonBar
Type: Bug Report
1
If you press the Alt key once, you get the KeyTips displayed. If you press it once more, the KeyTips should become hidden and the focus should be returned to the previously focused control.
Completed
Last Updated: 29 Jul 2010 10:11 by ADMIN
ADMIN
Created by: Stefan
Comments: 0
Category: RibbonBar
Type: Feature Request
1
radRibbonBar1.RibbonBarElement.ApplicationButtonElement.DropDownMenu.FadeAnimationType to be available in properties window.
Completed
Last Updated: 23 Apr 2014 12:56 by ADMIN
ADMIN
Created by: Martin Vasilev
Comments: 0
Category: RibbonBar
Type: Bug Report
0
In RadPanelBar elements (button, progress bar) TextAlignment property should be synchronized with TextPrimitive.TextAlignmet property.
Completed
Last Updated: 01 Apr 2010 11:16 by ADMIN
Moving a RibbonTab from one RadRibbonBar to another does not correctly place its content items in the destination Ribbon Bar's content panel.
Completed
Last Updated: 29 Mar 2010 11:05 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: RibbonBar
Type: Bug Report
1
The RadRibbonBar's MDI menu disappears when the control is collapsed to popup and a MDI child is maximized.
Completed
Last Updated: 05 Jun 2014 07:08 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: RibbonBar
Type: Bug Report
1
When you open the content popup of a collapsed group and click on a button that shows a dialog form, the popup stays opened.
Completed
Last Updated: 05 Jun 2014 07:08 by ADMIN
Go to Examples app, section RibbonBar >> FirstLook. Decrease the size of the main Examples form. Dropdownbuttons will appear instead of the actual content in RadRibbonBar. Open one of these buttons and click on the empty space area of the popup. The popup will close, but is should stay opened.
Completed
Last Updated: 05 Jun 2014 07:08 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: RibbonBar
Type: Bug Report
1
Go to the Examples, RibbonBar >> FirstLook. Decrease the width of the main form. Now open the 'Size' popup of RadRibbonBar. You will notice that the Size dropdown button is not properly aligned i n the popup.
Completed
Last Updated: 25 Jan 2010 04:29 by Deyan
Created by: Deyan
Comments: 0
Category: RibbonBar
Type: Bug Report
1
RadRibbonBar KeyTips are painted and executed even if the associated item is disabled.
Completed
Last Updated: 05 Jun 2014 07:08 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: RibbonBar
Type: Bug Report
0
When you set the EnableKeyMap property to false, this setting is not serialized in the designer.
5 6 7 8 9 10