我正在为我的soap服务编写JavaFX客户端,并且我的fxml页面必须包含一个完全可编辑的TableView,该View由Product类类实体组成.我的表现在由2个文本列和一个由Double值组成.我想在单元格中添加一个带有CheckBox项的选择列.使用Ensemble演示应用程序,我扩展了Cell类以使用CheckBoxes:
public class CheckBoxCell<S, T> extends TableCell<S, T> {
private final CheckBox checkBox;
private ObservableValue<T> ov;
public CheckBoxCell() {
this.checkBox = new CheckBox();
this.checkBox.setAlignment(Pos.CENTER);
setAlignment(Pos.CENTER);
setGraphic(checkBox);
}
@Override
public void updateItem(T item, boolean empty) {
super.updateItem(item, empty);
if (empty) {
setText(null);
setGraphic(null);
} else {
setGraphic(checkBox);
if (ov instanceof BooleanProperty) {
checkBox.selectedProperty().unbindBidirectional((BooleanProperty) ov);
}
ov = getTableColumn().getCellObservableValue(getIndex());
if (ov instanceof BooleanProperty) {
checkBox.selectedProperty().bindBidirectional((BooleanProperty) ov);
}
}
}
@Override
public void startEdit() {
super.startEdit();
if (isEmpty()) {
return;
}
checkBox.setDisable(false);
checkBox.requestFocus();
}
@Override
public void cancelEdit() {
super.cancelEdit();
checkBox.setDisable(true);
}
}
然后在fxml视图控制器类中,为需要的TableColumn设置一个cellFactory:
private Callback<TableColumn, TableCell> createCheckBoxCellFactory() {
Callback<TableColumn, TableCell> cellFactory = new Callback<TableColumn, TableCell> () {
@Override
public TableCell call(TableColumn p) {
return new CheckBoxCell();
}
};
return cellFactory;
}
...
products_table_remove.setCellFactory(createCheckBoxCellFactory());
我的问题是:
1)如何使用PropertyValueFactory使用未经检查的复选框填充此列
private final ObservableList <Boolean> productsToRemove= FXCollections.observableArrayList();
由Boolean.FALSE值组成,然后创建视图. (TableView由不具有布尔属性(仅3个字符串和一个Double属性)的Product类组成)?
2)我可以使用EventHandler来访问包含所选行的Product对象吗?
private void setProductDescColumnCellHandler() {
products_table_remove.setOnEditCommit(new EventHandler() {
@Override
public void handle(CellEditEvent t) {
...
我看到了很多带有Boolean字段的Entites示例.在我的情况下,我不想将boolean字段添加到jax-ws生成的类中.
解决方法:
1)可以使用预定义的类别javafx.scene.control.cell.CheckBoxTableCell代替您的类别.
2)要将信息添加到现有实例中,我建议继承委托,对于每个数据实例,实例化一个可用于提供TableView的视图实例:
class ProductV extends Product {
ProductV( Product product ) {
this.product = product;
}
final Product product;
final BooleanProperty delected = new SimpleBooleanProperty( false );
}