Completed
Last Updated: 13 Oct 2014 10:53 by ADMIN
The ToolTipTextNeeded event is not fired for the menu items that appear in a menu popup
Completed
Last Updated: 05 Jun 2014 07:08 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category:
Type: Bug Report
0
There should be a convenient API which can be used to hide/show/rotate the arrows of RadMenuItems.
Completed
Last Updated: 05 Jun 2014 07:08 by ADMIN
Adding that are not RadMenuItemBase derivates should not be allowed.

If there is a need for custom elements in the dropdownmenu, these elements should be hosted by a RadMenuItemBase derivative (for example RadMenuItem)
Completed
Last Updated: 05 Jun 2014 07:08 by ADMIN
ButtonElements in RadMenuButtonItems are not shown correctly, their are cut from the right side.
Completed
Last Updated: 23 Apr 2014 12:56 by ADMIN
Steps to reproduce:
1) Add several menu items
2) Add a collection of child menu items for a specific radMenuItem
3) Set the RightToLeft property of the radApplicationMenu to true
4) Use the left and right keyboard navigation to access a child menu item

Expected Result: Left/Right keyboard navigation should work properly like in MS MenuStrip
Actual Result: Left/Right keyboard navigation works the same like in default mode (RightToLeft = false)

WORKAROUND:
class MyApplicationMenu : RadApplicationMenu
    {
        protected override RadDropDownButtonElement CreateButtonElement()
        {
            return new MyButtonElement();
        }

        public override string ThemeClassName
        {
            get
            {
                return typeof(RadApplicationMenu).FullName;
            }
            set
            {
                base.ThemeClassName = value;
            }
        }
    }

    class MyButtonElement : RadApplicationMenuButtonElement
    {
        protected override RadDropDownButtonPopup CreateDropDown()
        {
            return new MyApplicationMenuDropDown(this);
        }
    }

    class MyApplicationMenuDropDown : RadApplicationMenuDropDown
    {
        public MyApplicationMenuDropDown(RadApplicationMenuButtonElement button)
            : base(button)
        {

        }
        protected override bool ProcessLeftRightNavigationKey(bool isLeft)
        {
            return base.ProcessLeftRightNavigationKey(this.RightToLeft == System.Windows.Forms.RightToLeft.No ? isLeft : !isLeft);
        }
    }
Completed
Last Updated: 11 Mar 2014 10:52 by ADMIN
To reproduce:
Add a RadGridView and RadScrollable panel. Set autoscroll of the panel to true. Add to grid to a splitpanel. Run the application and show the context menu by clicking a header cell. You will notice that a bottom scrollbar is showing.
Unplanned
Last Updated: 29 Mar 2016 10:12 by ADMIN
If you try to style the Right column menu of RadApplicationMenu, your changes will not be persisted and applied to the control.

Workaround: 
FillPrimitive fill = (FillPrimitive)this.radRibbonBar1.RibbonBarElement.ApplicationButtonElement.DropDownMenu.RootElement.Children[0].Children[0].Children[2].Children[0].Children[2].Children[1].Children[0];
fill.BackColor = Color.Orange;
fill.BackColor2 = Color.Red;
Completed
Last Updated: 23 Apr 2014 12:56 by ADMIN
ADMIN
Created by: Martin Vasilev
Comments: 0
Category:
Type: Bug Report
0
In design time if the visibility property of menu item has been changed to Hidden / Collapsed it should remain visible for the designer.
Completed
Last Updated: 23 Apr 2014 12:56 by ADMIN
ADMIN
Created by: Martin Vasilev
Comments: 0
Category:
Type: Bug Report
0
Changing Name property in design time for RadMenuItems brings an exception.
Completed
Last Updated: 23 Apr 2014 12:56 by ADMIN
ADMIN
Created by: Martin Vasilev
Comments: 0
Category:
Type: Bug Report
0
In some situation, the DropDown menu remains opened when the end user leave it and click somewhere on the form.
Completed
Last Updated: 03 Dec 2009 17:18 by ADMIN
RadMenu accepts keyboard commands even though its parent Form is not active. The normal behavior is that RadMenu processes keyboard only when its parent form is activated.
Completed
Last Updated: 04 Feb 2010 18:31 by ADMIN
SubMenu items MUST completely occlude the right pane of the Application Menu, regardless of the number of items available in the menu options.
Completed
Last Updated: 10 Dec 2010 05:06 by ADMIN
1. Create a new project containing RadMenu in MDI form
2. Add some child windows
3. Run the project
4. Open the menu
Completed
Last Updated: 23 Feb 2011 05:15 by ADMIN
ADMIN
Created by: Ivan Todorov
Comments: 0
Category:
Type: Bug Report
0
RadMenu does not align properly in Right-to-Left mode when the form is maximized.
Completed
Last Updated: 28 Jun 2016 11:32 by ADMIN
RadContextMenu items are not copied when the context menu is copied.
Completed
Last Updated: 03 Jun 2011 09:34 by ADMIN
MDI Menu merge is not disabled when AllowMerge property is set to false.
Completed
Last Updated: 24 Apr 2012 07:01 by ADMIN
The Click event of merged menu items is not fired the first time when you click on them after they have been merged.
Completed
Last Updated: 08 Sep 2010 04:27 by ADMIN
ADMIN
Created by: Jack
Comments: 0
Category:
Type: Feature Request
0
Menu items should stretch to fill the available area.
Completed
Last Updated: 20 Oct 2014 12:11 by ADMIN
Currently RadMenu and its drop down menus does not behave correctly when used in right to left mode.
Unplanned
Last Updated: 15 Aug 2017 09:36 by Svetlin
Improve the extensibility of RadMenuItem to allow easy layout modifications.