aboutsummaryrefslogtreecommitdiffstats
path: root/client
diff options
context:
space:
mode:
authorFelype Santiago Ferreira <felype@vaadin.com>2014-07-07 17:25:48 +0300
committerLeif Åstrand <leif@vaadin.com>2014-07-14 12:08:54 +0000
commit61905e0d49bb0f0be75626b2fa1bb9e53d1fe611 (patch)
tree3f6d73ef3e7a006e334baf764171fa3734e507ac /client
parentfd27ce8fa25a07062e6643f7edb59bacb96d1f68 (diff)
downloadvaadin-framework-61905e0d49bb0f0be75626b2fa1bb9e53d1fe611.tar.gz
vaadin-framework-61905e0d49bb0f0be75626b2fa1bb9e53d1fe611.zip
Adds a scrollbar to table column drop down (#14156).
Change-Id: I7ce7c61f842a09af1842a14fedec3412120944c7
Diffstat (limited to 'client')
-rw-r--r--client/src/com/vaadin/client/ui/VContextMenu.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/client/src/com/vaadin/client/ui/VContextMenu.java b/client/src/com/vaadin/client/ui/VContextMenu.java
index 038ee27dad..1b0181fb7d 100644
--- a/client/src/com/vaadin/client/ui/VContextMenu.java
+++ b/client/src/com/vaadin/client/ui/VContextMenu.java
@@ -161,6 +161,8 @@ public class VContextMenu extends VOverlay implements SubPartAware {
top = top - offsetHeight;
if (top < 0) {
top = 0;
+
+ setHeight(Window.getClientHeight() + "px");
}
}
setPopupPosition(left, top);