将TableColumns的排序行为绑定在JavaFX中的两个TableView之间

时间:2018-03-04 05:16:44

标签: java sorting javafx tableview tablecolumn

如果已经有人问过我但我在搜索中没有成功,我很抱歉。

在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 ...]

如何在col11col21以及col21col22之间绑定排序属性,以便在我点击{中的列标题时{1}}(显示排序箭头),table1将根据该列的条件进行排序。

0 个答案:

没有答案