Open realpixelcode opened 7 months ago
My listener for the [checkModelProperty](https://controlsfx.github.io/javadoc/11.1.2/org.controlsfx.controls/org/controlsfx/control/CheckListView.html#checkModelProperty()) is not called when checking or unchecking any of the items in the list. Nothing ever happens, not even an exception is thrown.
checkModelProperty
public class Controller implements Initializable { @FXML private CheckListView<String> checkListView; @Override public void initialize(URL location, ResourceBundle resources) { this.checkListView.checkModelProperty().addListener( (observable, oldValue, newValue) -> this.checkListView.setDisable(true)); } }
I use version 11.2.1.
11.2.1
My listener for the [
checkModelProperty
](https://controlsfx.github.io/javadoc/11.1.2/org.controlsfx.controls/org/controlsfx/control/CheckListView.html#checkModelProperty()) is not called when checking or unchecking any of the items in the list. Nothing ever happens, not even an exception is thrown.I use version
11.2.1
.