隐藏表列标题中的排序指示符/箭头

时间:2013-07-01 05:05:39

标签: java javafx-2 graphic

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

2 个答案:

答案 0 :(得分:2)

这可以通过css with

来完成
.table-view .arrow {
    -fx-background-insets: 0;
    -fx-padding: 0;
    -fx-shape: " ";
}

答案 1 :(得分:0)

这对我有用:

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

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