Completed
Last Updated: 12 Jan 2011 06:50 by ADMIN
When a larger DropDownHeaderImage is set the popup of RadDropDownMenu has incorrect size.
Completed
Last Updated: 23 Dec 2011 06:01 by ADMIN
In a right-to-left RadMenu:

Set the PopupDirection of a RadMenuItem to Left, set it back to Down, open the menu item's sub items. This results in an incorrectly aligned drop-down.
Completed
Last Updated: 27 Feb 2014 16:33 by ADMIN
ADMIN
Created by: Georgi I. Georgiev
Comments: 0
Category:
Type: Bug Report
1
To reproduce:
Add a RadSplitContainer to a form, add two SplitPanels, add a RadContextMenuManager, add a RadContextMenu and configure it to work with the splitpanels. Run the project, display the context menusa few times until you are no longer able to.
Completed
Last Updated: 28 Jul 2011 11:48 by ADMIN
ADMIN
Created by: Jack
Comments: 0
Category:
Type: Feature Request
1
Problem
A typical usability problem with menus I frequently see is a menu or sub-menu (grouping of menu items beneath another menu) that instantly disappears if the user mouses over the wrong pixel while trying to mouse over to the menu item.  This can be frustrating causing the user to have to retrace their steps to once again reveal the menu and this time carefully tip-toe the mouse back through the narrow parameters allowed them so as not to trip the code just waiting to remove their destination.

Solution
This is a fairly simple problem technically which requires the library author to allow from some time delay before hiding the menu.
Unplanned
Last Updated: 15 Aug 2017 09:33 by ADMIN
ADMIN
Created by: Jack
Comments: 0
Category:
Type: Feature Request
1
Currently RadMenu wraps its items when there is no enough space in the parent container. A possible alternative would be to implement scrolling.
Unplanned
Last Updated: 30 Mar 2016 08:54 by ADMIN
Workaround: manually add the source menu items to the destination menu by the time of opening the child form and then when you close it, you should put them back.
Unplanned
Last Updated: 30 Mar 2016 09:13 by ADMIN
Workaround:
menu.DropDown.RootElement.Children[0].Children[3].Children[1].Children[2].MaxSize = new Size(0, 400);
menu.DropDown.PopupElement.MaxSize = new Size(0, 400);
Completed
Last Updated: 23 Jul 2010 10:03 by ADMIN
- We have project called ProjectOne with a Form1 in in.
- this form inherits from RadForm
- add RadMenu with one item in it
- Create second project called ProjectTwo with Form2 in it
- make Form2 inherit from Form1.
- design time error appears.
Unplanned
Last Updated: 30 Mar 2016 09:16 by ADMIN
Use the attached project to reproduce. It contains a workaround as well.
Unplanned
Last Updated: 17 Apr 2024 14:35 by ADMIN
ADMIN
Created by: Dess | Tech Support Engineer, Principal
Comments: 0
Category:
Type: Bug Report
1
To reproduce:

1. Drop RadApplicationMenu from the toolbox on to the windows form.
2. Click on the control to open menu and select "Add new > New RadMenuSeparatorItem" option to add new item.
3. Save the form.
4. Press Ctrl+Z to undo changes. Here added RadMenuSeparatorItem is removed from the control.
5. Now press Ctrl+Y to Redo the changes.
Here added item is not added again after performing Redo action.
Completed
Last Updated: 29 May 2017 10:22 by ADMIN
ADMIN
Created by: Dess | Tech Support Engineer, Principal
Comments: 0
Category:
Type: Bug Report
1
When you open the drop down with menu items and hover a certain item, it is selected and orange fill is applied. Try to navigate with up/down arrow keys. The respective item will be selected. However, the hovered item still remains orange. It is not correct. In MS Word for example only one item is highlighted(selected) at a time.
Completed
Last Updated: 15 Aug 2017 10:28 by ADMIN
How to reproduce: create a RadMenu and set the VisualStudio2012Dark theme

Workaround: use the attached custom theme
Unplanned
Last Updated: 14 Aug 2017 13:41 by ADMIN
How to reproduce: check the attached project and video

Workaround:
public partial class RadForm1 : Telerik.WinControls.UI.RadForm
{
    public RadForm1()
    {
        InitializeComponent();

        this.LostFocus += RadForm1_LostFocus1;
    }

    private void RadForm1_LostFocus1(object sender, EventArgs e)
    {
        //Workaround
        this.radMenu1.GetType().GetField("shouldShowChildren", System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.NonPublic).SetValue(this.radMenu1, false);
    }
}
Unplanned
Last Updated: 19 Jun 2017 11:09 by ADMIN
To reproduce:

Open a WinForms project.
Add a RadMenu and add a File menu item.
Add a Search Item to the File menu
Add an imagelist with images.
Drop the File Menu and select the Search menu item
Make sure the Search menuItem is selected in the property grid
Try to assign an imageIndex to the search MenuItem. You can't

Workaround: restart Visual Studio and try again to assign the ImageIndex.
Unplanned
Last Updated: 06 Mar 2018 09:35 by ADMIN
ADMIN
Created by: Dess | Tech Support Engineer, Principal
Comments: 0
Category:
Type: Feature Request
1
Th attached gif file illustrates the desired behavior which is supported in the MS MenuStrip. 
Unplanned
Last Updated: 01 Mar 2019 12:57 by ADMIN

Please refer to the attached sample project.

1. Run the application, Excel will be opened.

2. In the Add-ins tab, click button2. A form with a RadMenu will be shown.

3. Close Excel but leave the form opened. As a result Excel hangs.

Unplanned
Last Updated: 30 Mar 2016 09:14 by ADMIN
To reproduce:

Add a RadForm as MDI child to another form. Add RadMenu to the child and the main forms. Associate hotkeys as follows:

RadMenuItem item = new RadMenuItem;
item.Text = "&File";

You will notice that only the main menu can be accessed with the Alt key and the shortcut.

Workaround:
Subscribe for each childform's KeyUp event and use the following event handler:
private void childForm_KeyUp(object sender, KeyEventArgs e)
{
    Form form = sender as Form;
    if (!form.Focused)
    {
        return;
    }

    RadMenu menu = null;
    foreach (Control control in form.Controls)
    {
        if (control is RadMenu)
        {
            menu = control as RadMenu;
            break;
        }
    }

    if ((Control.ModifierKeys & Keys.Alt) == Keys.Alt && menu != null)
    {
        foreach (RadItem item in menu.Items)
        {
            int ampersantIndex = item.Text.IndexOf("&");
            if (ampersantIndex != -1)
            {
                char hotkeyChar = item.Text[ampersantIndex + 1];
                if (char.ToLower(hotkeyChar) == char.ToLower((char)e.KeyValue))
                {
                    item.PerformClick();
                    break;
                }
            }
        }
    }
}

Completed
Last Updated: 05 Jun 2014 07:07 by ADMIN
Steps to reproduce:
Place a RadMenu in MDI parent form and open a MDI child form and then set, in runtime, the RightToLeft property to of the MDI Parent form to true.
The mdi children in Window menu item are multiplied.
Completed
Last Updated: 05 Jun 2014 07:07 by ADMIN
When user activated the form from RadMenu's MDIList the form appears maximized.
Unplanned
Last Updated: 15 Aug 2017 09:33 by ADMIN
RadMenuItem should be able to be as wide  as the Image in it, if there is not text.