How to make JavaFX TableView cells editable?

2020-07-07 10:32发布

There are a lot of tutorials, And a lot of suggestions to achieve this by extending JavaFX cells to make them editable. A good one is this stackoverflow question.
But the official tutorials uses a method call to create the callback without writing all that code, By calling

lastNameCol.setCellFactory(TextFieldTableCell.forTableColumn());

However when I do this in my code (FormTokens is my "model"):

// At beginning of class declaration
@FXML private TableColumn<FormTokens, String> valuColumn;

// Later at initialization
valuColumn.setCellFactory(TextFieldTableCell.forTableColumn());

Compiler says:

The method setCellFactory( Callback<TableColumn<FormTokens,String>,TableCell<FormTokens,String>>)
in the type TableColumn<FormTokens,String>
is not applicable for the arguments
(Callback<TableColumn<Object,String>,TableCell<Object,String>>)

If I remove the method call mentioned above everything works well except that TableView cells are not editable. What am I doing wrong?

edit: I just found this: Javafx TableView can not be edited But there are no solutions. How do I cast Callback<TableColumn<Object,... to Callback<TableColumn<FormTokens,...?

1条回答
放我归山
2楼-- · 2020-07-07 11:19

Specify the exact type explicitly for generic parameter as

valuColumn.setCellFactory(TextFieldTableCell.<FormTokens>forTableColumn());
查看更多
登录 后发表回答