Completed
Last Updated: 07 Nov 2019 14:22 by ADMIN
Release R1 2020 (LIB 2019.3.1111)
Completed
Last Updated: 02 Feb 2023 09:35 by ADMIN
Release R1 2023

Run the project and open the overflow menu. If you focus one of the editors and press the down arrow, the following error occurs:

   at Telerik.WinControls.RadMessageFilter.NotifyGetMessageEvent(Message& msg)
   at Telerik.WinControls.RadMessageFilter.GetMessageHookProc(Int32 code, IntPtr wParam, IntPtr lParam)   at Telerik.WinControls.UI.RadDropDownMenu.ProcessUpDownNavigationKey(Boolean isUp)
   at Telerik.WinControls.UI.RadDropDownMenu.OnKeyDown(Keys keyData)
   at Telerik.WinControls.UI.PopupManager.OnKeyDown(Message& msg)
   at Telerik.WinControls.UI.PopupManager.Telerik.WinControls.IMessageListener.PreviewMessage(Message& msg)
   at Telerik.WinControls.RadMessageFilter.NotifyGetMessageEvent(Message& msg)
   at Telerik.WinControls.RadMessageFilter.GetMessageHookProc(Int32 code, IntPtr wParam, IntPtr lParam)
Completed
Last Updated: 11 Oct 2018 14:44 by Dimitar
Workaround: 
Set it in code:
commandBarMaskedEditBox1.CommandBarMaskedTextBoxElement.MaskType = Telerik.WinControls.UI.MaskType.Numeric;
commandBarMaskedEditBox1.CommandBarMaskedTextBoxElement.Mask = "d";

Completed
Last Updated: 15 Aug 2017 10:20 by ADMIN
To reproduce:
- Run the attached project, maximize the form and click the drop-down buttons.

Workaround:
commandBarDropDownButton3.DropDownMenu.PopupOpening += DropDownMenu_PopupOpening;


private void DropDownMenu_PopupOpening(object sender, CancelEventArgs args)
{
    var e = args as RadPopupOpeningEventArgs;
    var ownerElement = (sender as RadDropDownMenu).OwnerElement;
    var loc = ownerElement.ElementTree.Control.PointToScreen(ownerElement.ControlBoundingRectangle.Location);
    loc.Y += ownerElement.ControlBoundingRectangle.Height;
    loc.X -=  ((sender as RadDropDownMenu).Width - ownerElement.ControlBoundingRectangle.Width);
    e.CustomLocation = loc;

}
Completed
Last Updated: 21 Mar 2016 13:38 by ADMIN
To reproduce:
- Add some controls to a command bar.
- Get the PreferredSize like this:

 Console.WriteLine(radCommandBar1.PreferredSize.ToString());

Workaround:
class MyCommandBar : RadCommandBar
{
    public override Size GetPreferredSize(Size proposedSize)
    {
        if (proposedSize.Width == 0 && proposedSize.Height == 0)
        {
            return this.Size;
        }
        return base.GetPreferredSize(proposedSize);
    }
}
Completed
Last Updated: 20 Oct 2014 14:02 by ADMIN
To reproduce:
- Remove and dispose a strip at runtime:

private void BRemoveItems_Click(object sender, EventArgs e)
{
    if (this.commandBarRowElement1.Strips.Count > 1)
    {
        if (this.commandBarRowElement1.Strips[1] is MyRadStripElement)
        {
            MyRadStripElement stripForRemoval = (MyRadStripElement)this.commandBarRowElement1.Strips[1];
                
            this.commandBarRowElement1.Strips.Remove(stripForRemoval);
            stripForRemoval.Dispose();
        }
    }
}
Workaround: dispose the item before remove it.
Completed
Last Updated: 01 Oct 2014 12:15 by ADMIN
Completed
Last Updated: 22 Oct 2014 06:50 by ADMIN
Assign a ImageList to RadCommnandBar and add CommandBarDropDownButton to a strip. Then open the Items collection editor for this drop down button, add new RadMenuItem and attempt to assign an ImageIndex from the ImageList of the control.
Completed
Last Updated: 18 Oct 2012 08:46 by ADMIN
1. Create new project with RadCommandBar and add a button in it.
2. Set the button's AutoSize property to false.
3. Run the project and try to hide the button by clicking the overflow button.
Completed
Last Updated: 05 Jun 2014 07:07 by ADMIN
Data-bounded CommandBarDropDownList shows only currently selected item when the CommandBarDropDownList located into overflow list.

Workarround: Assign the CommandBar's BindingContext explicitly

	public partial class Form1 : Form
	{
		
		public Form1()
		{
			InitializeComponent();
                        this.commandBarDropDownList1.BindingContext = this.BindingContext;
		}
Completed
Last Updated: 05 Jun 2014 07:08 by ADMIN
The KeyDown event for CommandBarDropDownList does not fire. The same is the situation with the DropDownListElement.
Completed
Last Updated: 05 Jun 2014 07:08 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: CommandBar
Type: Bug Report
1
If you have a RadCommandBar instance on a form, and on the same form you have a ContextMenuStrip with one toolstripmenuitem, you will notice that you are not able to select anything from the form.
Completed
Last Updated: 05 Sep 2013 10:02 by ADMIN
DisplayName property of RadCommandBarVisualElement class cannot be localized.
Completed
Last Updated: 19 May 2011 03:54 by ADMIN
When a menu popup is opened with a shortcut its location is initially not correct. If you open the menu by clicking on it its location will be correct. If you then move the form containing the menu and use the shortcut again the location will be the last location of the menu item opened by mouse click.

When a split button is in the command bar and you click on the action part the location of the popup is initially not correct. If you click on the arrow part the location will be correct and after that if you click on the action part the popup location will be again correct. If you move the form containing the command bar, containing the split button and click on the action part location of the popup will be the last location of the popup opened by arrow part click.
Completed
Last Updated: 21 Dec 2021 11:15 by ADMIN
Release R1 2022

1. Add a CommandBarDropDownButton with one RadMenuItem and one RadMenuButtonItem

2. Set the same SvgImage for both items and set the DisplayStyle to Image.

3. If you run the project, you will notice that the RadMenuItem shows the SVG, but the RadMenuButtonItem doesn't show it. 

Workaround: set the RadMenuButtonItem.ButtonElement.SvgImage

Completed
Last Updated: 05 Jan 2022 12:31 by ADMIN
Release R1 2022
Please open the attached project and open the designer. You will notice that a lot of code is serialized in the Designer.cs. The attached gif file illustrates the steps.
Completed
Last Updated: 07 Jun 2021 13:52 by ADMIN
Release R2 2021 SP1 (LIB 2021.2.607)
Please refer to the attached sample projects. Only with .NET 5 the test in the menu items and command buttons is missing.
Completed
Last Updated: 21 Aug 2020 12:32 by ADMIN
Release R3 2020 (LIB 2020.2.826)

Hi,

I have a CommandBar that contains multiple CommandBarDropDownLists. When they get shown, the tooltip is supposed to be the selected item's text. What actually happens though is that the tooltip is basically always the text of the first item in the list. I've tried several things, to no avail. Some of the things I've tried include overriding the VisualItemFormatting event of the CommandBarDropDownLists, working with the TextChanged event to change the tooltip, and trying to change the tooltip in the SelectedIndexChanged event that is also being overriden for other purposes as well. None of these has changed the behaviour described above.

Thank you in advance for your time! I know this is probably simple and I am just missing something, but I just can't figure it out.

Best regards,
Matei

Completed
Last Updated: 21 Jul 2020 12:19 by ADMIN
Release R3 2020 (LIB 2020.2.727)

Hi

Found a funny behavior in the RadCommandbar.

Just try this:

  • add a few buttons on the RadCommandbar
  • open the RadCommandbar Items collection from the properties
  • change the order of an item
    actually you don't need to change it definitively but
  • when you hit OK, you will see that the new item selector moved to the front of the RadCommandBar

 

In attachment I created a small movie clip that illustrates this behavior.

Kind regards,

Peter.

1 2 3