Group: StrataFrame Developers
Posts: 3K,
Visits: 2.5K
|
The DevExpress wrapper's DateEdit control does not have the same NULL value support that the basic DateTimePicker or the Infragistics wrapper's date editor. There is not currently a way to set the value that should be considered null. You can accomplish this by inheriting the DateEdit and shadowing the DateTime property (you'll have to use the "new" keyword in the property declaration to shadow/hide it). If the value gets set to 1/1/1900, then change the date time format to custom and provide an empty string for the format to blank it out. If the value is different, then reverse it.
|