Directory

← Back

IndeterminateCheckBox

A CheckBox with 3 states

Author

Rating

Popularity

<100

A CheckBox with 3 states : True, False and Indeterminate.

Compatible with the Vaadin data model. Compatible with the Valo theme.

Sample code

IndeterminateCheckBox box = new IndeterminateCheckBox();
box.setValue(null);

VerticalLayout layout = new VerticalLayout();
layout.addComponent(box);

box.addValueChangeListener(new Property.ValueChangeListener() {
            
            @Override
            public void valueChange(ValueChangeEvent event) {
                // Do something with the box value.
            }
});

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

Fixes an issue where checkbox style was not being set correctly when updating the state from the server side.

Released
2016-01-31
Maturity
BETA
License
Apache License 2.0

Compatibility

Framework
Vaadin 7.1+
Browser
Internet Explorer
Opera
Safari
Internet Explorer
iOS Browser
Internet Explorer
Internet Explorer
Windows Phone

IndeterminateCheckBox - Vaadin Add-on Directory

A CheckBox with 3 states IndeterminateCheckBox - Vaadin Add-on Directory
A CheckBox with 3 states : True, False and Indeterminate. Compatible with the Vaadin data model. Compatible with the Valo theme.
Issue Tracker
Source Code
Discussion Forum

IndeterminateCheckBox version 2.0.1
Fixes an issue where checkbox style was not being set correctly when updating the state from the server side.

Online