I have a DatePicker for selecting birthday.
This is going to be used for some filtering, and after the filtering, I will like the value to be
If you want to clear the TextField of the DatePicker, you can use :
TextField
DatePicker
datepicker.getEditor().clear();
If you want to clear the value and the textfield, use :
datePicker.setValue(null);