我有一个带有复选框的第一列的TableView。
我设法正确显示了复选框并使其可编辑,但当我单击复选框以选中或取消选中时,复选框会更改,但不会更新我的模型。
我就这样做了:
TableColumn<ContasReceber, Boolean> myCheckBoxColumn = (TableColumn<ContasReceber, Boolean>) tabelaContas.getColumns().get(0);
myCheckBoxColumn.setCellFactory(p -> new CheckBoxTableCell<>());
myCheckBoxColumn.setOnEditCommit(evt -> evt.getRowValue().setChecked(evt.getNewValue()));//It never executes the method setChecked when i click on the checkBox to change it's values.
答案 0 :(得分:3)
CheckBoxTableCell
的确设计用于映射到表模型中的BooleanProperty
(并且通常表格最适合此类模型)。 JavaDocs for CheckBoxTableCell
明确声明
通常的编辑回调(例如编辑提交)将不会被调用
如果要在模型不使用CheckBox
的表格单元格中使用BooleanProperty
,最好的办法是创建自己的表格单元格:
myCheckBoxColumn.setCellFactory(p -> {
CheckBox checkBox = new CheckBox();
TableCell<ContasReceber, Boolean> cell = new TableCell<ContasReceber, Boolean>() {
@Override
public void updateItem(Boolean item, boolean empty) {
if (empty) {
setGraphic(null);
} else {
checkBox.setSelected(item);
setGraphic(checkBox);
}
}
};
checkBox.selectedProperty().addListener((obs, wasSelected, isSelected) ->
((ContasReceber)cell.getTableRow().getItem()).setChecked(isSelected));
cell.setContentDisplay(ContentDisplay.GRAPHIC_ONLY);
cell.setAlignment(Pos.CENTER);
return cell ;
});
答案 1 :(得分:1)
我找到了自己做的方式,我在this other question回答时非常简单: 有一种非常简单的方法,您不需要使用SimpleBooleanProperty或其他任何东西来修改模型类,只需按照以下步骤操作:
1 - 假设你有一个&#34; Person&#34;使用isUnemployed方法的对象:
public class Person {
private String name;
private Boolean unemployed;
public String getName(){return this.name;}
public void setName(String name){this.name = name;}
public Boolean isUnemployed(){return this.unemployed;}
public void setUnemployed(Boolean unemployed){this.unemployed = unemployed;}
}
2 - 创建回调类
import javafx.beans.property.SimpleObjectProperty;
import javafx.beans.value.ObservableValue;
import javafx.scene.control.CheckBox;
import javafx.scene.control.TableColumn;
import javafx.util.Callback;
public class PersonUnemployedValueFactory implements Callback, ObservableValue> {
@Override
public ObservableValue call(TableColumn.CellDataFeatures param) {
Person person = param.getValue();
CheckBox checkBox = new CheckBox();
checkBox.selectedProperty().setValue(person.isUnemployed());
checkBox.selectedProperty().addListener((ov, old_val, new_val) -> {
person.setUnemployed(new_val);
});
return new SimpleObjectProperty(checkBox);
}
}
3 - 将回调绑定到表格列
如果您使用FXML,请将回调类放在您的列中:
<TableView fx:id="personList" prefHeight="200.0" prefWidth="200.0">
<columns>
<TableColumn prefWidth="196.0" text="Unemployed">
<cellValueFactory>
<PersonUnemployedValueFactory/> <!--This is how the magic happens-->
</cellValueFactory>
</TableColumn>
...
</columns>
</TableView>
不要忘记在FXML中导入课程:
<?import org.yourcompany.yourapp.util.PersonUnemployedValueFactory?>
如果没有FXML,请执行以下操作:
TableColumn<Person, CheckBox> column = (TableColumn<Person, CheckBox>) personTable.getColumns().get(0);
column.setCellValueFactory(new PersonUnemployedValueFactory());
4 - 那就是
所有内容都应按预期工作,当您单击复选框时将值设置为辅助bean,并在表中加载项目列表时正确设置复选框值。
答案 2 :(得分:0)
尝试使用以下代码创建列:
checkBoxesCol = new TableColumn<ContasReceber, Boolean>("CheckBox Col");
checkBoxesCol.setCellValueFactory(new Callback<TableColumn.CellDataFeatures<ContasReceber, Boolean>, ObservableValue<Boolean>>() {
@Override
public ObservableValue<Boolean> call(CellDataFeatures<ContasReceber, Boolean> param) {
return param.getValue().checkedProperty();
}
});
checkBoxesCol.setCellFactory(CheckBoxTableCell.forTableColumn(checkBoxesCol));
值的更新是自动的(不需要setOnEditCommit)