Completed
Last Updated: 12 Feb 2025 12:44 by ADMIN
Release 2025.1.211 (2025 Q1)
Created by: Luis
Comments: 1
Category: Buttons
Type: Feature Request
1
Add support for UI Automation in RadRadioButton control.
Unplanned
Last Updated: 30 Jan 2025 11:47 by ADMIN
Created by: Darren
Comments: 1
Category: Buttons
Type: Feature Request
1
Add support to handle mutual-exclusivity similar to RadRadioButtons.
Completed
Last Updated: 09 Oct 2014 07:31 by ADMIN
To reproduce:
- click a RadCheckBox with the right mouse button and you will notice the the state of the checkbox is changed.

Workaround:

public class LeftCheckBox : RadCheckBox
{
    protected override void OnMouseUp(MouseEventArgs e)
    {
        if (e.Button == System.Windows.Forms.MouseButtons.Left)
        {
            base.OnMouseUp(e);
        }
    }

    public override string ThemeClassName
    {
        get
        {
            return typeof(RadCheckBox).FullName;
        }
        set
        {
        }
    }
}
Completed
Last Updated: 27 Mar 2014 06:54 by ADMIN
To reproduce: Add a RadRadioButton to a form. Add a Button which opens a OpenFileDialog. Open the dialog and position it on top of the RadRadioButton so when you double click on a file the mouse cursor to be exactly over the RadRadioButton. Double click a file and you will see that the RadRadioButton is checked. This behavior can be changed by changing the ClickMode of the RadioButtonElement but setting it has no effect.

Completed
Last Updated: 01 Dec 2010 09:53 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: Buttons
Type: Bug Report
0
You can't handle the KeyUp event for RadCheckBox if the key pressed is Enter
Completed
Last Updated: 01 Dec 2010 09:54 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: Buttons
Type: Bug Report
0
You can't handle the KeyDown event for RadRadioButton if the key pressed is Enter.
Completed
Last Updated: 23 Apr 2014 12:56 by ADMIN
ADMIN
Created by: Martin Vasilev
Comments: 0
Category: Buttons
Type: Bug Report
0
Pressing backspace key in ComboBox element added to a RadDropDownButton closes that popup box and doesn't allow you to do any modification
Completed
Last Updated: 23 Apr 2014 12:56 by ADMIN
ADMIN
Created by: Martin Vasilev
Comments: 0
Category: Buttons
Type: Bug Report
0
Sometimes after rapid clicking on RadSplitButton, its DropDown stops closing when the user clicks outside it.
Completed
Last Updated: 30 Mar 2012 04:03 by ADMIN
1. Create new project and add 2 buttons
2. Disable the second button
3. On first button click, enable the second button
4. Set the second button to be AcceptButton
5. Run the project and click the first button
Completed
Last Updated: 28 Nov 2011 04:14 by ADMIN
1. Create a new application and add RadButton.
2. Set AcceptButton property of the form to point to the button.
3. Run the application and try to hover the button.
Completed
Last Updated: 24 Nov 2011 08:55 by ADMIN
FIX. RadSplitButton - mnemonics does not open the drop down until it was opened with click
Completed
Last Updated: 13 Jun 2011 03:58 by ADMIN
FIX. RadSplitButton - TextChanged event is fired before the text is changed
Completed
Last Updated: 20 Dec 2010 04:25 by ADMIN
RadSplitButton shows incorrect the vertical scroll bar (overlaps the buttons and the thumb) and shows only the first item, when only two items are added.
Completed
Last Updated: 16 Sep 2010 10:44 by ADMIN
The following events does not fire:
radMenuComboItem1.DropDownClosing += new RadPopupClosingEventHandler(radMenuComboItem1_DropDownClosing);
radMenuComboItem1.DropDownClosed += new RadPopupClosedEventHandler(radMenuComboItem1_DropDownClosed);
The ComboBoxItem has been replaced with a RadDropDownList. The following events are fired as expected:
this.radSplitButton1.DropDownButtonElement.DropDownClosing += new RadPopupClosingEventHandler(DropDownButtonElement_DropDownClosing);
this.radSplitButton1.DropDownButtonElement.DropDownClosed += new EventHandler(DropDownButtonElement_DropDownClosed);
Completed
Last Updated: 13 Jan 2015 15:31 by ADMIN
Completed
Last Updated: 02 Dec 2014 15:50 by ADMIN
To reproduce:
1. Drag a RadButton from the ToolBox and drop it onto the form. 
2. Drag a TelerikMetroBlue theme from the ToolBox and drop it onto the form. 
3. Change the button's theme at design time. You will notice the strange border around the control.
Please refer to the attached gif file.

However, when you save the form and reopen it the button looks ok.
Completed
Last Updated: 11 Jul 2016 10:37 by ADMIN
To reproduce:
public class RadForm1
{
	private RadButtonElement btnHelp;

	private void RadForm1_Load(object sender, EventArgs e)
	{
		btnHelp = new RadImageButtonElement();
		btnHelp.AutoSize = true;
		btnHelp.ShowBorder = false;
		btnHelp.Image = My.Resources.Resources.help;
		btnHelp.DisplayStyle = DisplayStyle.Image;
		btnHelp.ButtonFillElement.Visibility = ElementVisibility.Hidden;
		btnHelp.ClickMode = ClickMode.Release;
		btnHelp.Click += btnHelp_Click;

		this.FormElement.TitleBar.SystemButtons.Children.Insert(0, btnHelp);
	}

	private void btnHelp_Click(object sender, EventArgs e)
	{
		Process.Start("http://www.telerik.com");
	}
	public RadForm1()
	{
		Load += RadForm1_Load;
	}

}

Workaround:
Use the Press ClikMode.


Completed
Last Updated: 26 May 2015 08:44 by ADMIN
ADMIN
Created by: Dess | Tech Support Engineer, Principal
Comments: 0
Category: Buttons
Type: Bug Report
0
Please look at the attached screenshot.

Workaround:
RadRadiomark radioMark = this.radRadioButton1.ButtonElement.Children[1].Children.Last() as RadRadiomark;
radioMark.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.AntiAlias;
Completed
Last Updated: 23 Oct 2017 07:46 by Todor
Completed
Last Updated: 07 Mar 2016 11:38 by ADMIN
To reproduce:
- Set the shape at design time with the shape editor.
- Start the application or restart the designer.

Workaround:
Set the shape in code behind.