aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--client/src/com/vaadin/client/ui/VFilterSelect.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/client/src/com/vaadin/client/ui/VFilterSelect.java b/client/src/com/vaadin/client/ui/VFilterSelect.java
index 9b14fbbb37..63c8d3dbf9 100644
--- a/client/src/com/vaadin/client/ui/VFilterSelect.java
+++ b/client/src/com/vaadin/client/ui/VFilterSelect.java
@@ -1983,6 +1983,8 @@ public class VFilterSelect extends Composite implements Field, KeyDownHandler,
return tb.getElement();
} else if ("button".equals(subPart)) {
return popupOpener.getElement();
+ } else if ("popup".equals(subPart) && suggestionPopup.isAttached()) {
+ return suggestionPopup.getElement();
}
return null;
}
@@ -1993,6 +1995,8 @@ public class VFilterSelect extends Composite implements Field, KeyDownHandler,
return "textbox";
} else if (popupOpener.getElement().isOrHasChild(subElement)) {
return "button";
+ } else if (suggestionPopup.getElement().isOrHasChild(subElement)) {
+ return "popup";
}
return null;
}