1. Create a new project and add RadBrowseEditor. 2. Run the project. 3. Select some folder in the editor. 4. Try to click with the mouse somewhere inside the editor.
Double click on item from auto-complete drop down appends the item twice in RadAutoCompleteBox.
Current behavior: With decimal places = 2 2.225 is round to 2.22 the proper behavior would be 2.225 to be round to 2.23
RadMaskedEditBox/RadDateTimePicker/RadTimePicker does not support milliseconds editing.
Unable to write DateTimePicker/RadMaskedEditBox day part when Culture is set to "tr-TR"
Setting the ActiveMode property does not change the initially selected tab of the RadColorDialog.
RadColorDialog ignores some of the values provided in the overridden GetLocalizedString method. These are for example the tabs of the RadPageView.
Add IME support to RadTextBoxControl and RadAutoCompleteBox.
NullReferenceException is thrown in RadAutoCompleteBox, when the form is closed and new items are added to its auto complete data source.
When the Office2007Black theme is used, the items in the dialog's page view are not visible. Workaround: set the form's BackColor: ((RadColorDialogForm)radColorDialog1.ColorDialogForm).BackColor = Color.FromArgb(103, 103, 103);
RadAutoCompleteBox - Items collection ordered by input, not alphabetically
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;
Exception is thrown in RadTextBoxControl when the caret blink time is set to none.
RadDateTimePicker/RadDateTimePickerElement should display empty text if the Value property is set to null.
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;
IMPROVE. RadTextBoxControl - add right to left support
Themes of RadAutoCompleBoxElement cannot be reused when the element is hosted in RadGridView.
It's not possible to set using code not UI the RadTimePicker.Value when RadTimePicker.ReadOnly = true
Inserting @ symbol fails when french culture is used in RadTextBoxControl
The last caret position in RadTextBoxControl is not aligned to the end of the text due to wrong text measurement. On Win XP machine add RadTextBoxControl (Multiline=true) and start typing a very long text with no blank space between letters. As a result the caret is taken away from the last letter and if you use left arrow to return it back, the caret is positioned in the middle of the letter.