diff options
author | Leif Åstrand <leif@vaadin.com> | 2016-09-13 12:31:08 +0300 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2016-09-14 07:55:54 +0000 |
commit | 13e3d235e5ce62ad03a2da0046162e10bd5bd94c (patch) | |
tree | ab0d95605fa1ff865e015c3294054f73d49816e3 /shared | |
parent | 7c2c1e614a1de491473877aba06cd6d81b7b2530 (diff) | |
download | vaadin-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.java | 2 |
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"; } |