Currently, when Delete is pressed the min values is set, however, the textbox should be cleared. This can be handled by using a custom provider: public class MyFreeFormDateTimeProvider : FreeFormDateTimeProvider { public MyFreeFormDateTimeProvider(string mask, CultureInfo culture, RadMaskedEditBoxElement owner) : base(mask, culture, owner) { } public override void KeyDown(object sender, KeyEventArgs e) { if (e.KeyValue != 46) { base.KeyDown(sender, e); } } }
When the text is selected and deleted, the control will fall to its MinDate (by default 01/01/0001). If the NullDate eqals the MinDate, the text will be cleared, alternatively, the MinDate will be displayed. This is desired and expected behavior. This is the reason this item is being declined.