Completed
Last Updated: 05 Jun 2014 07:08 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: Buttons
Type: Bug Report
2
RadCheckBox can be checked by the right mouse button
Completed
Last Updated: 05 Jun 2014 07:08 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: Buttons
Type: Bug Report
4
RadRadioButton behaves differently from the Microsoft RadioButton in terms of keyboard navigation.
Completed
Last Updated: 05 Jun 2014 07:08 by ADMIN
ToggleStateChanging args are not giving the old value of the button.
Completed
Last Updated: 05 Jun 2014 07:08 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: Buttons
Type: Feature Request
2
When a RadCheckBox is in Indeterminate state, the user should be able to see a square instead of checkmark.
Completed
Last Updated: 05 Jun 2014 07:07 by ADMIN
With Office2010Blue RadRadioButton not render correctly its state in disabled state if programmatically change the Checked state, i.e. control remains visible unchecked
Completed
Last Updated: 05 Jun 2014 07:07 by ADMIN
If the CheckBox is not checked and the box is disabled it is not possible to programmatically change the Checked state, i.e. control remains visible as unchecked until it is enabled. Tested with Office2010Blue Theme

Please, test with Office2012Light
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: 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: 24 Mar 2014 11:25 by ADMIN
To reproduce: Create a form with RadButton and do some action on the Click event. Use the following Tool to click the button using the DoDefaultAction option http://msdn.microsoft.com/en-us/library/windows/desktop/dd318521(v=vs.85).aspx . You will notice that the click action will not be executed 

Workaround: public class MyButton : RadButton { protected override AccessibleObject CreateAccessibilityInstance() { return new MyAccessibilityInstance(this); } } public class MyAccessibilityInstance : RadButtonAccessibleObject { public MyAccessibilityInstance(Control owner) : base(owner) { } public override void DoDefaultAction() { ((RadButton)base.Owner).PerformClick(); } } 
Completed
Last Updated: 20 Feb 2014 16:09 by ADMIN
Notification and changes not send from control to bound object when ToggleState value is changed from RadCheckBox user input.


RESOLUTION: Use the new property named CheckState for simple data-binding scenarios. This property behave in same way as ToggleState but can be used in simple-data binding scenarios. Also, consider the corresponding events named:

CheckStateChanging and CheckStateChanged event.

 
Completed
Last Updated: 11 Feb 2014 16:10 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: Buttons
Type: Bug Report
1
ToggleStateChanging event is fired before the KeyDown event which should actually trigger the toggle
change operation. This happens when you press the Enter key.
Completed
Last Updated: 26 Feb 2013 06:02 by ADMIN
To reproduce: RadButton button = new RadButton(); button.AutoSize = true; button.MaximumSize = new Size(74, 0); button.Text = "Define Horizontal Measurement"; Controls.Add(button); WORKAROUND: set the MaxSize property of the border primitive to the same value as the MaxSize of the control: button.ButtonElement.BorderElement.MaxSize = new Size(74, 0);
Completed
Last Updated: 03 Sep 2012 03:19 by ADMIN
Setting RadDropDownButtonElement MinSize property does not make the RadDropDownButton control stretch to fit its element.

Currently, the issue can be avoided through adding the following three lines of code:
            this.radDropDownButton1.RootElement.StretchHorizontally = false;
            this.radDropDownButton1.RootElement.StretchVertically = false;
            this.radDropDownButton1.RootElement.SaveCurrentStretchModeAsDefault();
Completed
Last Updated: 24 Jul 2012 09:29 by ADMIN
IMPROVE. RadCheckBox - one should be able to increase the size of the check box and the check mark
Completed
Last Updated: 24 Jun 2012 05:09 by Jesse Dyck
ADMIN
Created by: Boryana
Comments: 1
Category: Buttons
Type: Bug Report
2
Setting the Font property of RadButton will not change the font in all states of the control. Currently, the issue can be avoided through setting the Font property of the ButtonElement.
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 Feb 2012 03:43 by ADMIN
ADMIN
Created by: Boryana
Comments: 0
Category: Buttons
Type: Bug Report
6
When a RadMenuButtonItem is in the menu dropdown, its Click event fires twice.
Completed
Last Updated: 05 Dec 2011 11:29 by Jesse Dyck
The arrow button of RadSplitButton is cut if you set a longer text and TextWrap=true.
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.