diff --git a/Android/DatePicker/README.md b/Android/DatePicker/README.md index 7502ec7f..364e63ee 100644 --- a/Android/DatePicker/README.md +++ b/Android/DatePicker/README.md @@ -21,6 +21,9 @@ }, function(returnDate) { var newDate = new Date(returnDate); currentField.val(newDate.toString("dd/MMM/yyyy")); + + // This fixes the problem you mention at the bottom of this script with it not working a second/third time around, because it is in focus. + currentField.blur(); }); });