Milan
Milan

Reputation: 811

Table Row Selected Colour Change JavaFX

I am trying to change the blue border colour when the row is selected. How can I change this colour?

enter image description here

Upvotes: 0

Views: 503

Answers (1)

Anfuca
Anfuca

Reputation: 1329

try to add this:

.table-row-cell:selected {

    -fx-table-cell-border-color: transparent;

}

Upvotes: 2

Related Questions