We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c3a5c88 commit 56af6e0Copy full SHA for 56af6e0
1 file changed
src/main/java/com/xwintop/xJavaFxTool/controller/littleTools/FileCopyController.java
@@ -98,7 +98,7 @@ private void initView() {
98
tableColumnRemarks.setCellValueFactory(new PropertyValueFactory<FileCopyTableBean, String>("remarks"));
99
tableColumnRemarks.setCellFactory(TextFieldTableCell.<FileCopyTableBean>forTableColumn());
100
tableColumnRemarks.setOnEditCommit((CellEditEvent<FileCopyTableBean, String> t) -> {
101
- t.getRowValue().setCopyNumber(t.getNewValue());
+ t.getRowValue().setRemarks(t.getNewValue());
102
});
103
tableViewMain.setItems(tableData);
104
0 commit comments