diff options
author | Henrik Paul <henrik@vaadin.com> | 2014-05-22 15:54:36 +0300 |
---|---|---|
committer | Leif Åstrand <leif@vaadin.com> | 2014-06-02 11:31:26 +0000 |
commit | 37436ce6448c8bc20bb866a5c259f58e8f50c0c3 (patch) | |
tree | 89ede630b6c1538564f903ca160fad8b3761464c /shared | |
parent | 2b81239ff8bdffcd4ef32a0a4625402175059d42 (diff) | |
download | vaadin-framework-37436ce6448c8bc20bb866a5c259f58e8f50c0c3.tar.gz vaadin-framework-37436ce6448c8bc20bb866a5c259f58e8f50c0c3.zip |
Client-side selection checkbox renderer (#13334)
Change-Id: I7b6a5c4ca1d78a97c34b1f7b95d1488edeb8551e
Diffstat (limited to 'shared')
-rw-r--r-- | shared/src/com/vaadin/shared/ui/grid/GridState.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/shared/src/com/vaadin/shared/ui/grid/GridState.java b/shared/src/com/vaadin/shared/ui/grid/GridState.java index 8fdd8c8ec5..acb2a48e3c 100644 --- a/shared/src/com/vaadin/shared/ui/grid/GridState.java +++ b/shared/src/com/vaadin/shared/ui/grid/GridState.java @@ -20,6 +20,7 @@ import java.util.ArrayList; import java.util.List; import com.vaadin.shared.AbstractComponentState; +import com.vaadin.shared.annotations.DelegateToWidget; /** * The shared state for the {@link com.vaadin.ui.components.grid.Grid} component @@ -85,4 +86,8 @@ public class GridState extends AbstractComponentState { */ public HeightMode heightMode = HeightMode.CSS; + /** FIXME remove once selection mode communcation is done. only for testing. */ + @DelegateToWidget + public boolean selectionCheckboxes; + } |