diff options
author | Teemu Pöntelin <teemu@vaadin.com> | 2015-09-27 18:10:30 +0300 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2015-09-30 06:24:18 +0000 |
commit | df0fee150d4cc195d057758d4af66afc63acdebe (patch) | |
tree | 07f07d602f6bae25624aee0868deeb142c686c44 /client/src/com | |
parent | 939b0cd26e599130936c8f2b8c7d5e257b63e105 (diff) | |
download | vaadin-framework-df0fee150d4cc195d057758d4af66afc63acdebe.tar.gz vaadin-framework-df0fee150d4cc195d057758d4af66afc63acdebe.zip |
Close calendar popup when DateField is detached (#18985)
Change-Id: Ib04b7356577dd5027cd9daac351f49a1a1e23f1d
Diffstat (limited to 'client/src/com')
-rw-r--r-- | client/src/com/vaadin/client/ui/VPopupCalendar.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/client/src/com/vaadin/client/ui/VPopupCalendar.java b/client/src/com/vaadin/client/ui/VPopupCalendar.java index bbf654980b..47f11b09b1 100644 --- a/client/src/com/vaadin/client/ui/VPopupCalendar.java +++ b/client/src/com/vaadin/client/ui/VPopupCalendar.java @@ -212,6 +212,7 @@ public class VPopupCalendar extends VTextualDate implements Field, protected void onDetach() { super.onDetach(); descriptionForAssisitveDevicesElement.removeFromParent(); + closeCalendarPanel(); } @SuppressWarnings("deprecation") |