1

有没有办法从 javafx 2.2 表列中的排序表列中删除排序指示符/箭头?

4

2 回答 2

3

这可以通过css来完成

.table-view .arrow {
    -fx-background-insets: 0;
    -fx-padding: 0;
    -fx-shape: " ";
}
于 2013-07-01T08:14:16.213 回答
0

这对我有用:

.no-sort-icon .column-header,
.no-sort-icon .column-header .arrow {
    -fx-background-image: null;
}

然后将“no-sort-icon”添加到 tableView 的样式类中。

于 2019-07-02T12:10:22.033 回答