Completed
Last Updated: 05 Jun 2014 07:08 by Svetlin
Inserting @ symbol fails when french culture is used in RadTextBoxControl
Completed
Last Updated: 09 Jul 2014 08:59 by Svetlin
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.
Completed
Last Updated: 17 Jun 2014 08:39 by ADMIN
Steps to reproduce:

For example current date is 24th.
Then selected the 19th from the datepicker popup
Then increased the day from the 19th to the 22nd by pressing the up arrow 3 times.
Then open the popup will see  3 dates highlighted + including today.
Completed
Last Updated: 05 Jun 2014 07:08 by Svetlin
When the AcceptReturn of RadTextBoxControl is enabled, the ENTER key is processed by the accept button of the form.
Completed
Last Updated: 05 Jun 2014 14:26 by ADMIN
NullabeValue property is set to 1/1/0001 instead of NULL when user delete the date and date is equal to NullDate.
Completed
Last Updated: 21 Sep 2012 03:37 by ADMIN
1. Create a new project and add RadTextBoxControl.
2. Set the Text to a string which is 6000 characters long.
3. Run the project.
Completed
Last Updated: 05 Jun 2014 07:08 by Svetlin
If you click in the view-port of the RadTextBoxControl and then on the vertical scroll bar, you will not be able to scroll vertically.
Completed
Last Updated: 05 Jun 2014 07:08 by Jesse Dyck
ADMIN
Created by: Nikolay
Comments: 1
Category: Editors
Type: Bug Report
4
The TabStop property set via the property builder of VS should be able to set the determine the tabbing behavior of RadTextBox and more specifically, the behavior of its inner TextBoxItem. Right now, the developer has to use a line of code to determine this behavior:
this.radTextBox1.TextBoxElement.TextBoxItem.TabStop = false;
while the TabStop of RadTextBox is always false, so that the focused can be always transferred to the inner TextBoxItem.
Completed
Last Updated: 24 Aug 2012 04:41 by ADMIN
To reproduce:
Add a grid with a DateTime column and change its editor to GridTimePickerEditor
Run the project and on a row with no value, open the editor, press Up arrow key, change to AM and then change the hour to 12
Open the popup and click the left key to change the AM/PM

Work around:
  void radGridView1_EditorRequired(object sender, Telerik.WinControls.UI.EditorRequiredEventArgs e)
        {
            if (e.EditorType == typeof(RadDateTimeEditor))
            {
                if (radGridView1.CurrentColumn.Name == "TimeColumn")
                {
                    GridTimePickerEditor editor = new GridTimePickerEditor();
                    e.Editor = editor;
                    RadTimePickerElement element = editor.EditorElement as RadTimePickerElement;
                    element.PopupContentElement.HoursTable.TableHeader.LeftArrow.MouseDown -= new MouseEventHandler(LeftArrow_MouseDown);
                    element.PopupContentElement.HoursTable.TableHeader.LeftArrow.MouseDown += new MouseEventHandler(LeftArrow_MouseDown);
                }
            }
        }

        void LeftArrow_MouseDown(object sender, MouseEventArgs e)
        {
            RadTimePickerElement element = ((GridTimePickerEditor)this.radGridView1.ActiveEditor).EditorElement as RadTimePickerElement;
            DateTime time = (DateTime)element.Value;
            element.Value = time.AddYears(-2);
        }
Completed
Last Updated: 05 Jun 2014 07:08 by ADMIN
When the ReadOnly property of RadTimePicker is true, setting the Value property in code does not cause any effect on the UI of RadTimePicker.
Completed
Last Updated: 05 Jun 2014 07:07 by ADMIN
Fix: RadMaskedEditBox MaskedType Numeric Mask "D" allows to enter only one digit
Workaround: Change RadMaskedEditBox Mask from "D" to "D0"
Completed
Last Updated: 05 Jun 2014 07:08 by Jesse Dyck
The spellchecker gives wrong suggestion for the word didn't't in both spelling modes.
Completed
Last Updated: 03 Feb 2017 11:08 by ADMIN
Users cannot edit  the A/P symbols with CustomMask set to "hh:mm:sst" or  "hh:mm:sstt"
Completed
Last Updated: 05 Jun 2014 07:08 by Svetlin
Handling of KeyPress event of RadTextBoxControl does not suppress inserting new character.
Completed
Last Updated: 20 Oct 2014 12:08 by ADMIN
When MaskedEditBox uses currency mask (c) and the culture is he-IL, user input is entered incorrectly.
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.
Completed
Last Updated: 10 Jul 2012 09:17 by ADMIN
Steps to reproduce:

1. Add a RadPropertyGrid to a form.
2. Select an object with DateTime property
3. Subscribe to the EditorInitialize event and set min and max date.
4. Run the application and open the property for edit. Type in a value outside the valid range and end edit. You will see that the invalid value is saved.
Completed
Last Updated: 04 Jun 2015 13:24 by ADMIN
Keyboard input does not work in RadDateTimePicker when the Culture is ar-SA
Completed
Last Updated: 14 May 2012 04:43 by ADMIN
To reproduce - create a form with a button and on click open another form with couple of RadColorBoxes in it. After closing the child form the memory is not released.
Completed
Last Updated: 05 Jun 2014 07:07 by ADMIN
Steps to reproduce:

radDateTimePicker1.Value = DateTime.Today; 
radDateTimePicker1.SetToNullValue(); 
radDateTimePicker1.Value = DateTime.Today;