如何使用 FXML 在按钮 Press 上刷新 tableView 中的数据?
我有以下文件结构,我想在按下按钮时刷新此表中的数据。有人知道解决方案吗?
public class MyTable {
private final SimpleStringProperty ID = new SimpleStringProperty("");
private final SimpleStringProperty ParticipantID = new SimpleStringProperty("");
public Positions() {
this("", "")
}
public Positions(String ID, String ParticipantID) {
setMemberID(ID);
setParticipantID(ParticipantID);
}
public String getParticipantID() {
return ParticipantID.get();
}
public void setParticipantID(String pID) {
ParticipantID.set(ParticipantID);
}
public String getID() {
return ID.get();
}
public void ID(String cID) {
ID.set(ID);
}
}
为此,我在 tablecontroller 文件上初始化了这个表。现在按下按钮,我想要作为 FXML 文件更新本身的 tableview。我该怎么做呢?