Completed
Last Updated: 05 Jun 2014 07:07 by Jesse Dyck
If assign a value using a percent mask the value isn't displayed as it should - assign a value of 0.08 I expect the control to display  "8.00 %", instead it displays "0.08 %"
Completed
Last Updated: 05 Jun 2014 07:07 by ADMIN
Steps to reproduce:

radDateTimePicker1.Value = DateTime.Today; 
radDateTimePicker1.SetToNullValue(); 
radDateTimePicker1.Value = DateTime.Today;
Completed
Last Updated: 16 Aug 2023 10:51 by ADMIN
Release R3 2023 (LIB 2023.2.816)

Sample code to reproduce the case: 

            if (int.TryParse(txtCount.Text, out int count))
            {
                string textToSet=new string('A', count)+"END";
                txtSample.Text = textToSet;

                this.radTextBox1.MaxLength = textToSet.Length;
               
                this.Text = txtSample.Text.Length.ToString();
               
            }
Completed
Last Updated: 26 Mar 2014 11:06 by ADMIN
To reproduce:
1.Add a RadAutoCompleteBox to a form. 
2.Add AutoCompleteItems.
3.Start the project.
4.AutoComplete a word and write some normal text.
5.Change few themes (mainly office themes) you will notice that the text's position shifts down.

Workaround:
Clear each TokenizedTextBlockElement's bottom Margin from the themes using VisualStyleBuilder.
Completed
Last Updated: 13 Dec 2017 13:05 by ADMIN
How to reproduce: check the attached project and video

Workaround: set a minimum size to the control
 public partial class RadForm1 : RadForm
 {
     public RadForm1()
     {
         InitializeComponent();

         this.radTextBox1.MinimumSize = new Size(0, 20);
     }
 }
Completed
Last Updated: 11 Feb 2014 11:18 by ADMIN
FIX. RadDateTimePicker - when the NullDate is set for example to DateTime.Now and you clear the value with SetToNullText, then you can not type the value for the current month.
Completed
Last Updated: 13 Nov 2012 04:10 by ADMIN
ADMIN
Created by: Boryana
Comments: 0
Category: Editors
Type: Bug Report
1
Setting the ActiveMode property does not change the initially selected tab of the RadColorDialog.
Completed
Last Updated: 13 Nov 2012 04:08 by ADMIN
RadColorDialog ignores some of the values provided in the overridden GetLocalizedString method. These are for example the tabs of the RadPageView.
Completed
Last Updated: 26 Apr 2012 06:12 by ADMIN
Exception is thrown on key press if RadMaskedEditBox has MaskType set to Numeric, Mask to C2, and Value to Null.
Completed
Last Updated: 21 Dec 2017 07:05 by ADMIN
How to reproduce: add a spellchecker to the form and configure it to spellcheck a multi line text box with a very long text.

Workaround: use RadTextBoxControl
Completed
Last Updated: 15 Aug 2011 07:32 by ADMIN
Make the Title of RadColorDialog accessible in the ColorDialogLocalizationProvider class
Completed
Last Updated: 26 Feb 2014 13:58 by ADMIN
ADMIN
Created by: Georgi
Comments: 0
Category: Editors
Type: Feature Request
1
A nice add-on to the control would be having Get/SetTextField methods, allowing for complete customization of each masked field.
Completed
Last Updated: 09 Jun 2014 10:13 by ADMIN
ADMIN
Created by: Martin Vasilev
Comments: 0
Category: Editors
Type: Feature Request
1
A possibility to specify the default time (to be different from 00:00) when choosing date value from the drop-down calendar.
Completed
Last Updated: 22 Nov 2010 10:43 by ADMIN
ADMIN
Created by: Stefan
Comments: 0
Category: Editors
Type: Feature Request
1
Add a functionality that allows the user to disable the spin editor like behavior when the MaskType is setting to Numeric.
Completed
Last Updated: 20 Jun 2014 15:01 by ADMIN
RadTextBox does not serialize its Size if it has been added into FlowLayoutPanel, and in run time it has incorrect size.
Completed
Last Updated: 11 Dec 2015 13:46 by ADMIN
If you put RadTextBox on a form, set its Anchor to Bottom \ Left and you show the form using the following code:
            RadForm1 rf = new RadForm1();
            rf.MdiParent = this;
            rf.WindowState = FormWindowState.Maximized;
            
Completed
Last Updated: 23 Apr 2014 12:56 by ADMIN
ADMIN
Created by: Martin Vasilev
Comments: 0
Category: Editors
Type: Bug Report
1
RadColorDialog does not work when assemblies has been merged, because RadColorEditor's CreateColorSelectorInstance method has hardcoded search for Telerik.WinControls.UI.dll assembly.
Unplanned
Last Updated: 06 Dec 2017 15:08 by ADMIN
ADMIN
Created by: Dess | Tech Support Engineer, Principal
Comments: 0
Category: Editors
Type: Bug Report
1
To reproduce: please refer to the attached sample screenshots and project.

Note: this issue is relevant for RadDropDownList as well.

Workaround:             
            this.radDropDownList2.DropDownListElement.TextBox.TextBoxItem.Multiline = true;
            this.radDropDownList2.DropDownListElement.TextBox.TextBoxItem.MinSize  = new Size(30, 15); 
Completed
Last Updated: 16 Aug 2011 05:32 by ADMIN
RadColorDialog is not localized properly when an instance of it is created after the localization provider is set.