我想编辑tableview行数据我有一些编辑单元格数据的代码,但它在我的项目中不起作用 fxml代码:
<TableView fx:id="table" layoutX="112.0" layoutY="25.0" prefHeight="430.0" prefWidth="505.0">
<columns>
<TableColumn fx:id="tablecol" prefWidth="490.0" text="Schedule Item">
<cellValueFactory>
<PropertyValueFactory property="firstName" />
</cellValueFactory></TableColumn>
</columns>
</TableView>
使用fxml fx:id="tablecol"
和fx:id="table"
代码:
@FXML
private TableView<person1> table;
@FXML
private TableColumn<person1, String> tablecol;
/**
* Initializes the controller class.
*/
@Override
public void initialize(URL url, ResourceBundle rb) {
tablecol.setCellFactory(TextFieldTableCell.forTableColumn());
tablecol.setOnEditCommit(
new EventHandler<CellEditEvent<person1, String>>() {
@Override
public void handle(CellEditEvent<person1, String> t) {
((person1) t.getTableView().getItems().get(
t.getTablePosition().getRow())
).setFirstName(t.getNewValue());
}
}
); try{
Class.forName("com.mysql.jdbc.Driver");
Connection con=(Connection)DriverManager.getConnection("jdbc:mysql://localhost:3306/schoolmanagement","root","root");
String sql="SELECT * FROM `scheduleitem` ";
Statement stm=(Statement) con.createStatement();
ResultSet rs=stm.executeQuery(sql);
while(rs.next()){
table.getItems().add(new person1(rs.getString(2)));
}
}
catch (ClassNotFoundException | SQLException e) {
}
}
}
public class person1 {
private final StringProperty firstName = new SimpleStringProperty("");
public person1(String firstName) {
setFirstName(firstName);
}
public String getFirstName() {
return firstName.get();
}
public void setFirstName(String name) {
this.firstName.set(name);
}
public StringProperty firstNameProperty() {
return firstName;
}
请帮助我无法编辑单元格数据。
谢谢。
答案 0 :(得分:0)
默认情况下,TableColumn
可编辑,但TableView
不可编辑。所以你需要
<TableView fx:id="table" editable="true" ...>