diff options
author | Felype Santiago Ferreira <felype@vaadin.com> | 2014-07-07 17:25:48 +0300 |
---|---|---|
committer | Leif Åstrand <leif@vaadin.com> | 2014-07-14 12:08:54 +0000 |
commit | 61905e0d49bb0f0be75626b2fa1bb9e53d1fe611 (patch) | |
tree | 3f6d73ef3e7a006e334baf764171fa3734e507ac /client | |
parent | fd27ce8fa25a07062e6643f7edb59bacb96d1f68 (diff) | |
download | vaadin-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.java | 2 |
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); |