Search code examples
javajavafx-2graphic

Hide sort indicator/arrow in table column header


Is there any way to remove sort indicator/arrow from sorted tablecolumn in javafx 2.2 table columns ?


Solution

  • this can be done via css with

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