i need to fire ValueChangeEvent of CheckBox from code? But I don’t understand how to do this using the framework. I tried to do it like this:
UiControllerUtils.fireEvent(UiControllerUtils.getScreen(this),
HasValue.ValueChangeEvent.class,
new HasValue.ValueChangeEvent((Component) customCheckBox,
customCheckBox.getValue(), Boolean.TRUE, false));
but this code does not work. Maybe someone knows how to do it?