Completed
Last Updated: 05 Jun 2014 07:07 by ADMIN
Steps to reproduce:

radDateTimePicker1.Value = DateTime.Today; 
radDateTimePicker1.SetToNullValue(); 
radDateTimePicker1.Value = DateTime.Today;
Completed
Last Updated: 05 Jun 2014 07:07 by Jesse Dyck
If assign a value using a percent mask the value isn't displayed as it should - assign a value of 0.08 I expect the control to display  "8.00 %", instead it displays "0.08 %"
Completed
Last Updated: 05 Jun 2014 07:07 by ADMIN
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: 20 Oct 2016 09:29 by ADMIN
When NumberFormat.NumberDecimalSeparator is same with NumberFormat.CurrencyGroupSeparator   numbers cannot be edited and deleted.
As a workaround set these separators to different values.
Completed
Last Updated: 05 Jun 2014 07:07 by ADMIN
If I set a RadSpinEditor.Hexadecimal to true, then false without reading the value, the value will steadily increase.

Workaround:
    public class MySpinEditor : RadSpinEditor
    {
        public new bool Hexadecimal
        {
            get
           
Unplanned
Last Updated: 30 Mar 2016 13:09 by ADMIN
When users select the "Ignore All" on the certain word the other ocupation of this word still market as wrong.
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.
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: 05 Jun 2014 07:07 by ADMIN
It's not possible to set using code not UI the RadTimePicker.Value when RadTimePicker.ReadOnly = true
Completed
Last Updated: 05 Jun 2014 07:07 by ADMIN
RadDateTimePicker/RadDateTimePickerElement should display empty text if the Value property is set to null.
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: 04 Jun 2015 13:24 by ADMIN
Keyboard input does not work in RadDateTimePicker when the Culture is ar-SA
Completed
Last Updated: 05 Jun 2014 12:20 by ADMIN
For example: users should be able to enter date like this 31/02/2013 and when control lost the focus the date should convert to 28/02/2013

Resolution:
This behavior could be achieved with the new FreeFormDateTimeProvider. Whit this provider user is not restricted from any mask and could enter the date in desire format. This provider is integrated in RadMakedEditBox so it can be used in RadDateTimePicker and RadTimePicker. To change default provider of RadDateTimePicker you should change the mask type of embedded RadMaskEditBox into RadDateTimePicker. For Example:

 this.radDateTimePicker1.DateTimePickerElement.TextBoxElement.MaskType = MaskType.FreeFormDateTime; 
Completed
Last Updated: 05 Jun 2014 07:07 by ADMIN
RadTimePicker/RadTimePickerElement should display empty text or Null text if the Value property is set to null.

Workaround:
        Me.RadTimePicker1.NullText = "Please, enter a time!"
        Me.RadTimePicker1.Value = Nothing
        Me.RadTimePicker1.TimePickerElement.MaskedEditBox.TextBoxItem.Text = ""
Completed
Last Updated: 05 Jun 2014 07:07 by ADMIN
Add a possibility to suggest misspelled words if they are all capital letters or contains numbers.
Completed
Last Updated: 05 Jun 2014 07:07 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: Editors
Type: Feature Request
1
RadMaskedEditBox should be able to handle dynamic masks. The core of this feature is the ability to have a value for the number of allowed characters on one hand and a value for the number of maximum characters on the other hand.
Completed
Last Updated: 05 Jun 2014 07:07 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: Editors
Type: Feature Request
1
RadMarkupDialog should provide the possibility to be localized by a localization providers.
Completed
Last Updated: 12 Feb 2015 06:51 by ADMIN
If you have a GridViewMaskBoxColumn with MaskType set to E-mail and you try to enter and commit a value in this column, you get an exception.
Completed
Last Updated: 05 Jun 2014 07:08 by ADMIN
The sender of RadDateTimePicker.KeyPress event is currently HostedTextBoxBase which is not the correct sender to expose.