Toggleable checkbox with Bootstrap-Checkbox(Picker)
Toggleable checkbox with Bootstrap Toggle
Three state checkboxes with Checkbox-X.
CheckboxX checkboxX = new CheckboxX("checkboxX", new Model<Boolean>(true)) {
@Override
protected void onChange(Boolean value, AjaxRequestTarget target) {
info("The selection is: " + value);
target.add(feedback);
}
};