Completed
Last Updated: 30 Nov 2016 06:50 by ADMIN
ADMIN
Dimitar
Created on: 18 Mar 2016 09:33
Category: Editors
Type: Bug Report
2
FIX. RadDateTimePicker - the FreeFormDateTimeProvider does not set the value to null.
To reproduce:
- Set the provider to FreeFormDateTimeProvider 
- Bind the control to a value.
- Clear the date and tab out of the control.

Workaround:
Seth the value in the ParsingDateTime event handler:

if (e.InputString == "")
{
    this.SetToNullValue();
}
0 comments