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.
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.

Completed
Last Updated: 02 Nov 2018 08:53 by Alexander
Created by: Alexander
Comments: 0
Category:
Type: Bug Report
0
This is really bad for usability. When a user clicks on a seperator by accident the menu closes and nothing happens.
Completed
Last Updated: 12 Oct 2018 09:46 by Dimitar
ADMIN
Created by: Dimitar
Comments: 0
Category:
Type: Bug Report
0
Use attached to reproduce.
- open the menu and press the down arrow. This disabled items should not be selected.

Woekaround:
public class MyMenuItem : RadMenuItem
{
    public MyMenuItem()
        : base()
    {

    }

    public MyMenuItem(string text)
        : base(text)
    {
    }

    protected override RadDropDownMenu CreateDropDownMenu()
    {
        return new MyDropDown(this);
    }

    protected override Type ThemeEffectiveType
    {
        get
        {
            return typeof(RadMenuItem);
        }
    }
}

public class MyDropDown : RadDropDownMenu
{
    public MyDropDown(RadElement owner)
        : base(owner)
    {
    }

    protected override bool ProcessUpDownNavigationKey(bool isUp)
    {
        var selectedItem = this.GetSelectedItem();
        RadItem nextItem = selectedItem;

        do
        {
            nextItem = this.GetNextItem(nextItem, !isUp);

        } while (!nextItem.Enabled);

        this.SelectItem(nextItem);

        return true;
    }


    public override string ThemeClassName
    {
        get
        {
            return typeof(RadDropDownMenu).FullName;
        }
        set
        {
        }
    }
}
Completed
Last Updated: 11 Oct 2018 14:26 by Dimitar
To reproduce:
- Add an item and then use the Clear method.
- The arrow is still visible.

Workaround:
 radMenuItem2.Layout.ArrowPrimitive.Visibility = Telerik.WinControls.ElementVisibility.Collapsed;
Declined
Last Updated: 11 Sep 2018 12:02 by ADMIN
To reproduce:

Add a RadMenu and a RadMenuItem. To the RadMenuItem add another items, make some of them disabled. Open the first menu item and navigate with the arrows, you will see that the disabled items are selected but no visually.

They should be skipped during navigation

Workaround:

Use the following custom RadMenuItem. The navigation logic is overriden in the RadDropDownMenu:

public class MyMenuItem : RadMenuItem
{
    public MyMenuItem()
        : base()
    {

    }

    public MyMenuItem(string text)
        : base(text)
    {
    }

    protected override RadDropDownMenu CreateDropDownMenu()
    {
        return new MyDropDown(this);
    }

    protected override Type ThemeEffectiveType
    {
        get
        {
            return typeof(RadMenuItem);
        }
    }
}

public class MyDropDown : RadDropDownMenu
{
    public MyDropDown(RadElement owner)
        :base(owner)
    {
    }

    protected override bool ProcessUpDownNavigationKey(bool isUp)
{
    var selectedItem = this.GetSelectedItem();

    RadItem nextItem = selectedItem;

    var itemIndex = this.Items.IndexOf(selectedItem);
    for (int i = itemIndex; i < this.Items.Count - itemIndex; i++)
    {
        nextItem = this.GetNextItem(nextItem, !isUp);
        if (nextItem.Enabled)
        {
            break;
        }
    }

    this.SelectItem(nextItem);

    return true;
}


    public override string ThemeClassName
    {
        get
        {
            return typeof(RadDropDownMenu).FullName;
        }
        set
        {
        }
    }
}

Declined
Last Updated: 13 Jun 2018 07:05 by ADMIN
Note:  this problem is reproducible with RadTextBoxControl as well. The Enter and Leave events also don't fire when RadTextBoxControl is inside a RadPopupContainer

Resolution:

Case 1:
RadTextBoxElement is not a control and do not have validation events. Use RadTextBox with RadMenuHostItem instead:

RadTextBox tb = new RadTextBox();
RadMenuHostItem item = new RadMenuHostItem(tb);
tb.Validating += Tb_Validating;
item.MinSize = new Size(50, 20);
radMenu1.Items.Add(item);

Case 2:

RadPopupEditor has message filter which is responsible for closing the popup and it intercept the leave and enter messages. Use GotFocus and LostFocus instead.
Completed
Last Updated: 31 May 2018 12:39 by ADMIN
Such a functionality needs to be defined on an application level. In the 2018 R2 release we have added Recently Used Menu items in the Visual Style Builder application and the approach there can serve as an example.
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: 20 Nov 2017 14:03 by ADMIN
Use attached to reproduce.

Workaround:
private void Item_Click(object sender, EventArgs e)
{
    menu.DropDown.ClosePopup(new PopupCloseInfo(RadPopupCloseReason.CloseCalled,null));
}
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: 15 Aug 2017 09:36 by Jesse Dyck
Introduce menu merge when the MDI children are in RadDock
Unplanned
Last Updated: 15 Aug 2017 09:36 by Svetlin
Improve the extensibility of RadMenuItem to allow easy layout modifications.
Unplanned
Last Updated: 15 Aug 2017 09:33 by ADMIN
Example: http://www.telerik.com/help/aspnet-ajax/menu-items-xml.html
Unplanned
Last Updated: 15 Aug 2017 09:33 by ADMIN
Examples: http://www.telerik.com/help/aspnet-ajax/menu-data-binding-overview.html
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.
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: 15 Aug 2017 09:23 by Jesse Dyck
For RadMenu there should be a property which determines whether the accelerator keys are underlined even when the RadMenu is not focused. The available options for that menu should be Yes, No and WindowsDefined
Unplanned
Last Updated: 15 Aug 2017 09:21 by ADMIN
ADMIN
Created by: Martin Vasilev
Comments: 0
Category:
Type: Feature Request
2
Add functionality (DropDownNeeded event for example) for load on demand for child menu items in RadMenu.
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);
    }
}
1 2 3 4 5