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: 13 Jun 2011 03:58 by ADMIN
FIX. RadSplitButton - TextChanged event is fired before the text is changed
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: 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: 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: 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: 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: 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: 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: 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: 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
        {
        }
    }
}
1 2 3 4 5