Completed
Last Updated: 19 Feb 2015 09:12 by Jesse Dyck
FIX. RadDropDownList- when the form is started the textbox shows the end of the text instead of the begging of it, when the used text is longer than the control length.
Completed
Last Updated: 13 Jun 2014 09:09 by ADMIN
In ReadOnle mode no other keys do anything on the document, but the delete key deletes text/images just as it normally works.
Completed
Last Updated: 18 Apr 2013 02:40 by ADMIN
To reproduce:
radDateTimePicker1.ShowUpDown = true;

WORKAROUND:
            radDateTimePicker1.ShowUpDown = true;
            radDateTimePicker1.Enabled = false;
            radDateTimePicker1.Enabled = true;
Completed
Last Updated: 22 Apr 2014 15:41 by ADMIN
To reproduce:
Add RadAutoCompleteBox
Add AutoCompleteItems
Change the theme to Office2010BlueTheme, Office2010BlackTheme, Office2007SilverTheme or Office2010SilverTheme.
Write something - looks good
Autocomplete a word and now write something - text is a few pixels lower.

Workaround:

void radAutoCompleteBox2_TextBlockFormatting(object sender, TextBlockFormattingEventArgs e)
{
    TokenizedTextBlockElement token = e.TextBlock as TokenizedTextBlockElement;
    if (token != null)
    {
        token.Margin = new Padding(0, 1, 1, 1);             
    }
}
Completed
Last Updated: 18 Dec 2012 04:17 by ADMIN
ADMIN
Created by: Stefan
Comments: 0
Category: Editors
Type: Bug Report
4
To reproduce:
- set the Mask to N2
- set the MaskType to Numeric
- set the control value to 4.456789

The the control displays 4.456789 instead of 4.46

WORKAROUND: 
  Private Sub RadMaskedEditBox1_ValueChanged(sender As Object, e As EventArgs)
        Dim control As RadMaskedEditBox = DirectCast(sender, RadMaskedEditBox)
        RemoveHandler control.ValueChanged, AddressOf RadMaskedEditBox1_ValueChanged
        control.MaskedEditBoxElement.TextBoxItem.Text = control.MaskedEditBoxElement.Provider.ToString(False, True)
        AddHandler control.ValueChanged, AddressOf RadMaskedEditBox1_ValueChanged
    End Sub
Unplanned
Last Updated: 30 Mar 2016 13:16 by ADMIN
ADMIN
Created by: Paul
Comments: 0
Category: Editors
Type: Bug Report
4
If the size of the text and icons on the screen is set to larger and the font of the text is set to 12 pixels. Letters that have tails below (such as: g, j, y) are not shown properly inside the text box. 

Workaround:

As a workaround one can set the minimum height of the text box to be as the height of the text and allow multi lines.

int textHeight = TextRenderer.MeasureText(this.radTextBox1.Text, this.radTextBox1.Font).Height;this.radTextBox1.TextBoxElement.TextBoxItem.MinSize = new Size(0, textHeight);this.radTextBox1.TextBoxElement.TextBoxItem.InvalidateMeasure();this.radTextBox1.TextBoxElement.TextBoxItem.UpdateLayout();this.radTextBox1.Multiline = true;
Completed
Last Updated: 17 Jan 2012 12:31 by ADMIN
Steps to reproduce:
1. Add a RadDateTimePicker to a form.
2. Set ShowUpDown to true.
3. Set NullDate to be DateTime.Now
4. Set MinValue to DateTime.Now.Date
5. Set MaxValue to DateTime.Now.AddDays(1).AddSeconds(-1)
6. Try to change the value and press tab to save the value. The value will be set to null.
Completed
Last Updated: 31 Jan 2011 07:43 by ADMIN
RadMaskEditBox does not apply the mask when the value is pasted from context menu. Same works when the value is pasted with Ctrl+V.
Completed
Last Updated: 03 Jul 2013 13:52 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: Editors
Type: Bug Report
4
Put couple text boxes on a form in design time and you will have to press Shift+TAB twice to get the focus to the previously focused text box.
Completed
Last Updated: 03 Feb 2012 04:04 by ADMIN
FIX. RadDateTimePicker - setting the value to null, should clear the selection
Completed
Last Updated: 25 Feb 2021 07:51 by ADMIN
ADMIN
Created by: Nikolay
Comments: 2
Category: Editors
Type: Bug Report
4
Currently, you cannot enter the date in RadDateTimePicker by typing it in the textbox area.
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: 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.
Unplanned
Last Updated: 27 Nov 2017 15:28 by ADMIN
How to reproduce: also check the attached video
this.radMaskedEditBox1.MaskType = MaskType.Numeric;

Workaround:
private void RadMaskedEditBox1_TextChanged(object sender, EventArgs e)
{
    if (this.radMaskedEditBox1.Text == "-0")
    {
        if (this.radMaskedEditBox1.MaskedEditBoxElement.TextBoxItem.Text.Length == 2)
        {
            //Workaround
            this.radMaskedEditBox1.MaskedEditBoxElement.TextBoxItem.Text = this.radMaskedEditBox1.MaskedEditBoxElement.TextBoxItem.Text.Remove(1, 1);
        }
    }
}
Completed
Last Updated: 23 Apr 2014 12:56 by ADMIN
To reproduce:
- Use RadTimePicker in a project and apply the Aqua theme to it.
Completed
Last Updated: 02 Jun 2014 13:53 by ADMIN
To reproduce:
- Add RadDateTimePicker to a form and set its ReadOnly property to true.
- Paste a valid value using the Ctrl+V key combination.

Workaround:
- Disable the corresponding key combination in the KeyDown event:

void radDateTimePicker1_KeyDown(object sender, KeyEventArgs e)
{
    if (e.Control && e.KeyCode == Keys.V)
    {
        e.SuppressKeyPress = true;
    }
}
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";
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.
Completed
Last Updated: 08 May 2015 09:01 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: Editors
Type: Bug Report
3
Place a RadTextBox on a form and set its anchor to Left, Top, Right. Show the form in a maximized mode. You will notice that the RadTextBox is longer than it should be. The workaround concerns setting the AutoSize property of RadTextBox to false.
Completed
Last Updated: 03 Aug 2016 12:19 by ADMIN
To reproduce:

public Form1()
{
    InitializeComponent();

    this.radTextBox1.Multiline = true;
    this.radTextBox1.Size = new Size(200, 200);
    this.radTextBox1.TextChanged += radTextBox1_TextChanged;
}

private void radTextBox1_TextChanged(object sender, EventArgs e)
{
    this.radTextBox1.BackColor = Color.Red;
}

Note: when you keep pressed a specific key, you will notice that the memory consumption is increased, although if you force the GarbageCollector, it is released. It is also noticeable that there is text lagging while typing. Please refer to the attached gif file.

Workaround:
            this.radTextBox1.TextBoxElement.TextBoxItem.TextBoxControl.BackColor = Color.Red;
1 2 3 4 5 6