summaryrefslogtreecommitdiffstats
path: root/shared
diff options
context:
space:
mode:
authorLeif Åstrand <leif@vaadin.com>2016-09-13 12:31:08 +0300
committerVaadin Code Review <review@vaadin.com>2016-09-14 07:55:54 +0000
commit13e3d235e5ce62ad03a2da0046162e10bd5bd94c (patch)
treeab0d95605fa1ff865e015c3294054f73d49816e3 /shared
parent7c2c1e614a1de491473877aba06cd6d81b7b2530 (diff)
downloadvaadin-framework-13e3d235e5ce62ad03a2da0046162e10bd5bd94c.tar.gz
vaadin-framework-13e3d235e5ce62ad03a2da0046162e10bd5bd94c.zip
Add multi selection support to CheckBoxGroup
This patch adds multi selection support only for CheckBoxGroup without even trying to generalize anything. Adopting the concepts to work with other components will be done separately. Change-Id: Id4ccd2c743b74cb022dc9dfd8cd8dae3bf8f0c54
Diffstat (limited to 'shared')
-rw-r--r--shared/src/main/java/com/vaadin/shared/ui/optiongroup/CheckBoxGroupConstants.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/shared/src/main/java/com/vaadin/shared/ui/optiongroup/CheckBoxGroupConstants.java b/shared/src/main/java/com/vaadin/shared/ui/optiongroup/CheckBoxGroupConstants.java
index 2747dd4c99..6bca43852a 100644
--- a/shared/src/main/java/com/vaadin/shared/ui/optiongroup/CheckBoxGroupConstants.java
+++ b/shared/src/main/java/com/vaadin/shared/ui/optiongroup/CheckBoxGroupConstants.java
@@ -25,4 +25,6 @@ public class CheckBoxGroupConstants implements Serializable {
public static final String JSONKEY_ITEM_VALUE = "v";
public static final String JSONKEY_ITEM_KEY = "k";
+
+ public static final String JSONKEY_ITEM_SELECTED = "s";
}