Is it possible to manipulate the Checkbox inside CheckboxGroup like a standalone object. E.g. make it disabled, readonly or hidden.
I’ve tried this way, but it doesn’t work properly.
Optional first = checkboxGroup.getChildren().findFirst();
Component component = first.get();
Checkbox checkbox = (Checkbox)component;
checkbox.setEnabled(false);