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: 10 Apr 2013 05:43 by ADMIN
To reproduce:
            radTimePicker1.Enabled = false;
            radTimePicker1.Enabled = true;

WORKAROUND:
 void radTimePicker1_EnabledChanged(object sender, EventArgs e)
{
    if (radTimePicker1.Enabled)
    {
        radTimePicker1.TimePickerElement.ForeColor = Color.Black;
    }
}
Completed
Last Updated: 09 Apr 2013 04:13 by Svetlin
Fix suggest behavior in RadAutoCompleteBox to support spaces in the written text.

WORKAROUND:
public class MyAutoCompleteBox : RadAutoCompleteBox
    {
        public MyAutoCompleteBox()
        {
            this.ThemeClassName = typeof(RadAutoCompleteBox).FullName;
        }

        protected override RadTextBoxControlElement CreateTextBoxElement()
        {
            return new MyAutoCompleteBoxElement();
        }
    }

 public class MyAutoCompleteBoxElement : RadAutoCompleteBoxElement
    {
        protected override Type ThemeEffectiveType
        {
            get { return typeof(RadAutoCompleteBoxElement); }
        }

        public override void CloseDropDown(RadPopupCloseReason reason)
        {
            if (reason == RadPopupCloseReason.CloseCalled)
            {
                if (this.ListElement.SuggestedText != null && this.ListElement.PatternText != null && this.ListElement.IsSuggestionMatched)
                {
                    return;
                }
            }

            base.CloseDropDown(reason);
        }

        protected override RadTextBoxListElement CreateListElement()
        {
            return new RadTextBoxListElement();
        }
    }
Completed
Last Updated: 26 Mar 2013 04:43 by ADMIN
steps to reproduce:

 - Click on the red cross to delete the "radAutoCompleteBox1" entry of the first RadAutoCompleteBox.    The blinking cursor is positioned at the beginning of the box.
 - Click on the second RadAutoCompleteBox.
The blinking cursor is positioned in the second box, but the blinking cursor of the first RadAutoCompleteBox is still present.
Completed
Last Updated: 25 Mar 2013 04:57 by ADMIN
Drop RadTextBox on the form - there is a default text which equals to the Name of the control.
Completed
Last Updated: 25 Jan 2013 05:39 by ADMIN
1. Create a new application with RadMarkupDialog.
2. Use the ILMerge tool to merge all assemblies in one executable file.
3. Run that file. You will see that all images are missing.
Completed
Last Updated: 15 Jan 2013 08:20 by ADMIN
IF you  canceling the textChanging event of the RadTextBox (e.Cancel = true)  the cursor back at the start of the text.

Work around:

1. Create custom text box element that inherited the RadTextBoxElement. For example:
public class MyTextBoxElement : RadTextBoxElement
{
    private bool isValueChanging = false;
    private int selectionStart = -1;
 
    public MyTextBoxElement()
    {
        this.TextBoxItem.HostedControl.TextChanged += new EventHandler(HostedControl_TextChanged);
    }
 
    protected override void OnTextChanging(Telerik.WinControls.TextChangingEventArgs e)
    {
        base.OnTextChanging(e);
 
        Regex regEx = new Regex(@"[\s]{1,}");
        if (regEx.IsMatch(e.NewValue))
        {
            isValueChanging = true;
            this.selectionStart = base.TextBoxItem.SelectionStart - 1;
        }
         
    }
 
    private void HostedControl_TextChanged(object sender, EventArgs e)
    {
        if (this.isValueChanging && selectionStart >= 0)
        {
            this.isValueChanging = false;
            this.TextBoxItem.SelectionStart = this.selectionStart;
        }
    }
 
    protected override Type ThemeEffectiveType
    {
        get
        {
            return typeof(RadTextBoxElement);
        }
    }
}

2. Create custom Text box that inherited the RadTextBox: For Example:
public class MyTextBox : RadTextBox
{
    private static readonly FieldInfo TextBoxElementFieldInfo = typeof(RadTextBox).GetField("textBoxElement", BindingFlags.NonPublic | BindingFlags.Instance);
 
    public MyTextBox()
    {
        this.ThemeClassName = typeof(RadTextBox).FullName;
    }
 
    protected RadTextBoxElement TextBox
    {
        get { return (RadTextBoxElement)TextBoxElementFieldInfo.GetValue(this); }
        set { TextBoxElementFieldInfo.SetValue(this, value); }
    }
 
    protected override void InitializeTextElement()
    {
        this.TextBox = new MyTextBoxElement();
        this.TextBox.StretchVertically = true;
        this.TextBox.ShowBorder = true;
    }
 
}

3. Use your custom Text box instead the default RadTextBox. 

4. Subscribe to text Changing event of the custom text box and add the following code snippet:

    Regex regEx = new Regex(@"[\s]{1,}");
    if (regEx.IsMatch(e.NewValue))
    {
        e.Cancel = true;
    }
Completed
Last Updated: 18 Dec 2012 04:19 by ADMIN
ADMIN
Created by: Stefan
Comments: 0
Category: Editors
Type: Bug Report
1
To reproduce:
- set the Mask to P2
- set the MaskType to Numeric
- set the control value to 0.024

The the control displays "2.4" instead of "2.4 %"

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
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
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: 30 Nov 2012 03:11 by ADMIN
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.
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: 05 Nov 2012 03:50 by ADMIN
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);
Completed
Last Updated: 05 Nov 2012 01:37 by ADMIN
RadAutoCompleteBox - Items collection ordered by input, not alphabetically
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: 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: 17 Aug 2012 05:26 by ADMIN
SpellCheckAllAtOnce form should fill the "Change To:" field with the selected word in the suggestions box
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.