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 09:27 by ADMIN
ADMIN
Created by: Stefan
Comments: 0
Category: Editors
Type: Feature Request
2
ADD. RadBrowseEditor - add FileSaveDialog support
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"
Unplanned
Last Updated: 15 Aug 2017 09:33 by ADMIN
Currently, this can be achieve with this code:
  TextInfo textInfo = new CultureInfo("en-US", false).TextInfo;
        bool updating = false;
        void radTextBox1_TextChanging(object sender, TextChangingEventArgs e)
        {
            if (!updating)
            {
                int pos = radTextBox1.TextBoxElement.TextBoxItem.SelectionStart;
                updating = true;
                radTextBox1.Text = textInfo.ToTitleCase(radTextBox1.Text);
                radTextBox1.TextBoxElement.TextBoxItem.SelectionStart = pos;
                updating = false;
            }
        }
Completed
Last Updated: 17 Aug 2012 05:26 by ADMIN
SpellCheckAllAtOnce form should fill the "Change To:" field with the selected word in the suggestions box
Unplanned
Last Updated: 30 Mar 2016 13:09 by ADMIN
Completed
Last Updated: 14 Dec 2012 10:53 by Jesse Dyck
ADMIN
Created by: Boryana
Comments: 1
Category: Editors
Type: Feature Request
5
Add PasswordChar property.
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: 10 Jun 2014 18:54 by Jesse Dyck
Add a new wrapping mode that breaks the text per whole words
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.