如果已经有人问过我但我在搜索中没有成功,我很抱歉。
在JavaFX中给出两个具有相同数量和类型的表的表,例如:
// First Table
private TableView table1 = new TableView();
TableColumn col11 = new TableColumn("col1");
TableColumn col12 = new TableColumn("col2");
table1.getColumns().addAll(col11, col12);
// Second Table
private TableView table2 = new TableView();
TableColumn col21 = new TableColumn("col1");
TableColumn col22 = new TableColumn("col2");
table2.getColumns().addAll(col21, col22);
[... logic adding and showing tables here ...]
如何在col11
和col21
以及col21
和col22
之间绑定排序属性,以便在我点击{中的列标题时{1}}(显示排序箭头),table1
将根据该列的条件进行排序。