Directory

← Back

CheckboxGroup multiselect component for Java

CheckboxGroup multiselect component for Java

Author

Rating

Popularity

<100

NOTE: Since Vaadin 12, there is a CheckBoxGroup component available. PLEASE USE THAT INSTEAD, THIS ADD-ON IS NOT MAINTAINED ANYMORE.

https://vaadin.com/api/platform/14.0.8/com/vaadin/flow/component/checkbox/CheckboxGroup.html

Sample code

        CheckboxGroup<String> group = new CheckboxGroup<>();
        group.setItems("foo", "bar", "baz");
        group.addValueChangeListener(event -> message.setText(String.format(
                "Checkbox group value changed from [%s] to [%s]",
                event.getOldValue(), event.getValue())));

Compatibility

(Loading compatibility data...)

Was this helpful? Need more help?
Leave a comment or a question below. You can also join the chat on Discord or ask questions on StackOverflow.

Version

Fixed issue with Vaadin 10.0 final release

Released
2018-09-06
Maturity
BETA
License
Apache License 2.0

Compatibility

Framework
Vaadin 10+
Browser
Firefox
Safari
Google Chrome
iOS Browser
Android Browser
Internet Explorer
Microsoft Edge

CheckboxGroup multiselect component for Java - Vaadin Add-on Directory

CheckboxGroup multiselect component for Java CheckboxGroup multiselect component for Java - Vaadin Add-on Directory
**NOTE: Since Vaadin 12, there is a `CheckBoxGroup` component available. PLEASE USE THAT INSTEAD, THIS ADD-ON IS NOT MAINTAINED ANYMORE.** https://vaadin.com/api/platform/14.0.8/com/vaadin/flow/component/checkbox/CheckboxGroup.html
Github repository

CheckboxGroup multiselect component for Java version 1.0.0.alpha1

CheckboxGroup multiselect component for Java version 1.0.0.beta1
Fixed issue with Vaadin 10.0 final release

Online