From 37436ce6448c8bc20bb866a5c259f58e8f50c0c3 Mon Sep 17 00:00:00 2001 From: Henrik Paul Date: Thu, 22 May 2014 15:54:36 +0300 Subject: Client-side selection checkbox renderer (#13334) Change-Id: I7b6a5c4ca1d78a97c34b1f7b95d1488edeb8551e --- shared/src/com/vaadin/shared/ui/grid/GridState.java | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'shared') 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; + } -- cgit v1.2.3