Another similar solution that does not depend on JGoodies:
/**
* Customized DatePicker UI delegate object that sets the date value to null if
* the textfield is empty or contains solely whitespace
*/
public class MyDatePickerUI extends BasicDatePickerUI implements FocusListener {
static {
UIManager.put("microba.DatePickerUI", "MyDatePickerUI");
}
public static...