Unplanned
Last Updated: 15 Aug 2017 09:33 by ADMIN
ADD. RadTextBox - there should be a mode whether the undo should bring back the previous word or to work for each character
Completed
Last Updated: 06 Feb 2012 04:17 by ADMIN
IMPROVE. RadTextBox - add option to choose whether the NullText should be wrapped or not, when used in MultiLine text box
COMMENT: This functionality is supported by RadTextBoxControl. Please use it instead.
Unplanned
Last Updated: 30 Mar 2016 13:19 by ADMIN
Multiply line text is not correct align at the left side when control runs on Win xp.

Steps to reproduce:
this.radTextBoxControl1.Text = "This\nis a\ntest";
Unplanned
Last Updated: 15 Aug 2017 09:36 by ADMIN
Currently there can only be one delimiter in the autocomplete box. Different users might be accustomed to using different delimiters, even one user using several delimiters.
Completed
Last Updated: 14 Oct 2010 08:12 by Jesse Dyck
ADMIN
Created by: Dobry Zranchev
Comments: 1
Category: Editors
Type: Bug Report
3
Click the scroll bar in the Color Dialog web page closes the dialog.
Declined
Last Updated: 20 Feb 2014 14:52 by ADMIN
ADMIN
Created by: Jack
Comments: 0
Category: Editors
Type: Feature Request
3
Currently it is not possible to represent time as 24:00 in time picker control as it uses the .NET DateType type, which does not support "24:00" as valid time.
Completed
Last Updated: 26 Mar 2013 04:43 by ADMIN
steps to reproduce:

 - Click on the red cross to delete the "radAutoCompleteBox1" entry of the first RadAutoCompleteBox.    The blinking cursor is positioned at the beginning of the box.
 - Click on the second RadAutoCompleteBox.
The blinking cursor is positioned in the second box, but the blinking cursor of the first RadAutoCompleteBox is still present.
Completed
Last Updated: 11 Jun 2019 07:37 by ADMIN
Release R2 2019 SP1
Workaround: use RadTextBoxControl.
Completed
Last Updated: 16 Jul 2012 07:34 by ADMIN
ADMIN
Created by: Boryana
Comments: 0
Category: Editors
Type: Bug Report
3
When the culture is set to de-AT (or bg-BG or any other culture that does not support AM PM time format), the user cannot set the hours to be 23 using the keyboard (type 2 and then 3). The value is automatically turned to 11.
Unplanned
Last Updated: 30 Nov 2018 12:55 by farid
The workaround in the following MSDN resources results in an incorrect behavior in the header of RadDateTimePicker: https://code.msdn.microsoft.com/Fixing-Persian-Locale-for-6e66e044#content
Completed
Last Updated: 05 Jun 2014 07:07 by Jesse Dyck
Workaround: Users should use a N0 mask instead of G mask.
Completed
Last Updated: 13 Jul 2016 14:25 by ADMIN
RadMaskedEditBox is not able to edit the value when MaskType is set to Numeric, Mask to percentage and CultureInfo NumberFormat CurrencyGroupSeparator is set to "."

Workaround:
CultureInfo ci = new CultureInfo(Thread.CurrentThread.CurrentCulture.LCID, false); //do not use user settings
 
Thread.CurrentThread.CurrentCulture = ci;
Completed
Last Updated: 06 Dec 2011 06:39 by ADMIN
To reproduce:
1. Drag RadColorDialog to a form
2. Set the SelectedColor and Show the form
3. Close the form, set another SelectedColor and Show the form again.
4. The result is that the circle position is wrong and the values in the editors are wrong.
Completed
Last Updated: 06 Feb 2018 07:37 by ADMIN
Completed
Last Updated: 24 Nov 2010 09:09 by ADMIN
This behavior appears when the MaskType property if set to Numeric.
Completed
Last Updated: 11 Feb 2014 16:12 by ADMIN
To reproduce:
RadColorDialog dialog = new RadColorDialog();
dialog.ColorDialogForm.ColorChanged

Workaround:
((RadColorSelector)dialog.ColorDialogForm.RadColorSelector).OkButtonClicked += Form1_OkButtonClicked;
//or
((RadColorSelector)dialog.ColorDialogForm.RadColorSelector).ColorChanged+= ColorDialogForm_ColorChanged;
Completed
Last Updated: 10 Apr 2013 05:43 by ADMIN
To reproduce:
            radTimePicker1.Enabled = false;
            radTimePicker1.Enabled = true;

WORKAROUND:
 void radTimePicker1_EnabledChanged(object sender, EventArgs e)
{
    if (radTimePicker1.Enabled)
    {
        radTimePicker1.TimePickerElement.ForeColor = Color.Black;
    }
}
Completed
Last Updated: 02 Apr 2012 08:30 by ADMIN
FIX. RadSpinEditor - user should not be able to change the value of the control with the arrow keys when in ReadOnly mode
Completed
Last Updated: 23 Dec 2011 07:34 by ADMIN
ADMIN
Created by: Jack
Comments: 0
Category: Editors
Type: Bug Report
2
1. Create a new project and add a button.
2. On its Click event show and dispose RadColorDialog form
3. Run the project and note how memory consumption increases
Completed
Last Updated: 04 Oct 2013 05:32 by ADMIN
ADMIN
Created by: Dimitar
Comments: 0
Category: Editors
Type: Feature Request
2
RadMaskedEditBox - the ability to access the ErrorProvider in order to change the image or other properties.