Completed
Last Updated: 05 Jun 2014 15:19 by ADMIN
Drag a button to the form and in design time set its size to 45,80
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: 20 Jan 2015 13:31 by ADMIN
To reproduce add RadDock to a form and use the following code on a button click.
           DocumentWindow document = new DocumentWindow();
            radDock1.AddDocument(document);
            document.TabStripItem.ShowCloseButton = true;
            document.TabStripItem.CloseButton.Image = image1;
            document.TabStripItem.CloseButton.ImageHovered = image2;
            document.TabStripItem.CloseButton.ImageClicked = image3;

The result is that instead of having three different images for the different states, only the main Image is displayed.
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.
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: 19 Aug 2011 10:03 by ADMIN
FIX. RadDropDownButton, does not show focus cues, until the first time it is clicked.
Completed
Last Updated: 13 Jun 2011 03:58 by ADMIN
FIX. RadSplitButton - TextChanged event is fired before the text is changed
Completed
Last Updated: 25 Apr 2011 07:56 by ADMIN
FIX. RadRadioButton shape can not be set with Office2010 themes
COMMENT. In order to achieve the required design all Office2010 themes use Image Shapes. When an Image Shape is applied to an element, its shape cannot be customized. Thus, the behavior observed in the QSF > Buttons > RadRadioButtons demo, i.e. custom shapes cannot apply to the RadioMark and the CheckMark, is expected.
Completed
Last Updated: 14 Oct 2014 06:13 by ADMIN
FIX. RadRadioButton does not show focus cues before tab key is pressed.
Completed
Last Updated: 16 Feb 2015 15:51 by ADMIN
IMPROVE. RadRadioButton should take its parent BackColor (not the form color) when its BackColor property is set to Transparent.
Completed
Last Updated: 14 Apr 2016 11:26 by ADMIN
Setting check box to be indeterminate and disabled in design time results in incorrect state when the application is started. Setting those states after the InitializeComponent call works fine.
Completed
Last Updated: 09 Oct 2019 07:45 by ADMIN
FIX. RadButton does not indicate that it is pressed when it is clicked with key instead of clicking with mouse
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: 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: 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: 15 Nov 2010 09:12 by ADMIN
When disabled RadRadioButtons should beep their current state.
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: 21 Jan 2016 12:56 by ADMIN
Coping RadDropDownButton in design time leads to improperly distributed items collection.