【发布时间】:2015-10-21 21:22:46
【问题描述】:
如何绑定TreeTableView?这给了我一个错误:
tblTreeView.rootProperty().bind(model.transactionProperty());
transactionProperty():
public SimpleListProperty<Document> transactionsProperty() {
if(transactions == null){
transactions = new SimpleListProperty<>();
}
return transactions;
}
【问题讨论】:
-
根必须是 TreeItem ...
标签: data-binding binding javafx javafx-8