Completed
Last Updated: 27 Oct 2014 08:23 by ADMIN
The TimePickerElement of RadTimePicker does not expose any events. However, events are needed if one needs to use this picker as an element, let's say in RadRibbonBar.
Completed
Last Updated: 05 Jun 2014 07:08 by ADMIN
Select a date from RadDateTimePicker using the calendar dropdown. Now type another date in the textbox to make a new selection. Open the drop-down and you will see that there are two dates 'selected'. The issue occurs, because when you select from the calendar, you set the cell to Focused.Selected. When you then type a date in the textbox, you change the Focused cell, but the selection on the previous cell remains. So, you end up with two 'selected' cells. The workaround is to clear the selection on opening the dropdown: 

        void radDateTimePicker1_Opening(object sender, CancelEventArgs e)
        {
            calendar.SelectedDates.Clear();
        }
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: 11 Feb 2014 16:23 by Svetlin
The RadAutoCompleteBox does not show its dropdown when single item is suggested.
Completed
Last Updated: 12 Feb 2015 17:29 by ADMIN
RadTextBoxControl - you can not type more than one polish char -"Ä…". 

Steps to reproduce:

Change keyboard to Polish(programmers)
Type "Ä…" while pressing right alt.

Workaround:
Use RadTextBox instead RadTextBoxControl.
Completed
Last Updated: 05 Jun 2014 07:07 by ADMIN
Steps to reproduce:

1. Set a Standard Mask on the RadMaskedEditBox and a space a PromptChar.
2. Type some text in the RadMaskedEditBox.
3. Press the "Home" key to move the cursor at the beginning of the RadMaskedEditBox.
4. Then press the spacebar.
5. You should see the first character gets deleted but instead of leaving a space in the first position in the RadMaskedEditBox, the second character is moved in the first position and the cursor is on the second position.

If you press the spacebar again the space is entered in the RadMaskedEditBox and the cursor potition is ok.
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: 05 Jun 2014 07:07 by ADMIN
The RadMaskedEditBox wil throw an exception if set the custom culture with empty CurrencySymbol and MaskType is set to Numeric. 

Workaround:
Set the CurrencySimbol to space char:

            cultureInfo.NumberFormat.CurrencySymbol = " "
            this.radMaskedEditBox1.Culture = cultureInfo
Completed
Last Updated: 05 Jun 2014 07:07 by ADMIN
Completed
Last Updated: 11 Sep 2015 11:02 by Florian
To reproduce:
 private void MdiChildForm_Load(object sender, EventArgs e)
 {
      radMaskedEditBox1.MaskType = MaskType.Numeric;
      radMaskedEditBox1.Mask = "n4";
      radMaskedEditBox1.NullText = "this is null text"
}
 private void radButton1_Click(object sender, EventArgs e)
{
      radMaskedEditBox1.Value = null;
 }

the issue appears also when the RadmaskedEditBox is configured like this:

this.radMaskedEditBox1.MaskType = Telerik.WinControls.UI.MaskType.Standard;
this.radMaskedEditBox1.Mask = "0000000";

this.radMaskedEditBox1.NullText = "My null text";
this.radMaskedEditBox1.PromptChar = '_';

WORKAROUND:
radMaskedEditBox1.Value = null;
radMaskedEditBox1.MaskedEditBoxElement.TextBoxItem.HostedControl.Text = "";
Completed
Last Updated: 05 Jun 2014 07:07 by ADMIN
FIX. When we change the Culture property, the control will display the current date even if the value of the control is NULL

Workaround:
Set an empty string to the Hosted TextBox control after the Culture set.
For example:
radDateTimePicker1.Culture = Thread.CurrentThread.CurrentCulture;
radDateTimePicker1.DateTimePickerElement.TextBoxElement.TextBoxItem.HostedControl.Text = "";
Completed
Last Updated: 29 Apr 2016 06:06 by ADMIN
RadMaskedEditBox - has incorrect behavior if you set values with differed length.

Workaround is to reset the value before to set new one:

C#
RadMaskedEditBox1.Value = null;
RadMaskedEditBox1.Value = "YourText";

VB
RadMaskedEditBox1.Value = Nothing
RadMaskedEditBox1.Value = "YourText"
Completed
Last Updated: 27 Dec 2016 14:36 by ADMIN
Steps to reproduce.
1. Add a RadTextBoxControl and a button to a form
2. On the button click set a large text (the text from a 150KB text file) to the Text property of the text box.

You will see that the control takes a lot of time to complete the operation.
Completed
Last Updated: 05 Jun 2014 07:08 by Svetlin
The RadDateTimeEditor does not obey MaxDate and MinDate property when the value is changed by keyboard input.

Work around:

public class MyRadDateTimeEditor : RadDateTimeEditor
    {
        public MyRadDateTimeEditor()
        {
            RadDateTimeEditorElement element = this.EditorElement as RadDateTimeEditorElement;
            element.CurrentBehavior.TextBoxElement.ValueChanged += this.OnValueChanged;
        }

        private void OnValueChanged(object sender, System.EventArgs e)
        {
            RadMaskedEditBoxElement maskBox = sender as RadMaskedEditBoxElement;
            RadDateTimeEditorElement element = this.EditorElement as RadDateTimeEditorElement;

            DateTime result;

            if (maskBox.Value != null && DateTime.TryParse(maskBox.Value.ToString(), out result) && DateTime.Compare(result, element.MaxDate) > 0)
            {
                this.Value = element.MaxDate;
                maskBox.Value = element.MaxDate;
                return;
            }
        }
    }
Completed
Last Updated: 05 Jun 2014 07:07 by Jesse Dyck
Workaround: Users should use a N0 mask instead of G mask.
Completed
Last Updated: 05 Jun 2014 07:08 by ADMIN
The sender of the KeyPress event should be RadMaskedEditBox. Currently, it is RadMaskedEditBoxElement.
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: 24 Jul 2014 05:40 by Jesse Dyck
If you set MaskType to Standard and Mask to  ">LLL_LLL_LLL"   and set the TextMaskFormat property to ExcludePromptAndLiterals, the result value property will be an empty string.