我有這個大的BooleanBinding。JavaFX Combox何時被選中屬性
BooleanBinding uncompleteBinding = txtBarcode.textProperty().isEmpty()
.or(txtNombre.textProperty().isEmpty()
.or(txtPrecioContado.textProperty().isEmpty())
.or(txtPrecioCredito.textProperty().isEmpty())
.or(txtModelo.textProperty().isEmpty()
.or(txtSerie.textProperty().isEmpty()
.or(cboCategoria.selectionModelProperty().isNull()
))));
BooleanBinding的purpouse是啓用保存按鈕。它工作正常,直到我將Combobox添加到組合中。它似乎沒有那樣工作。我嘗試了isNotNull()和itemsProperty()。
由defaul't Combobox顯示一個「 - 」,沒有被選中。需要用戶選擇一些東西,並且沒有允許默認的選定值。
請提供演示 – kleopatra