Bran Stark
Bran Stark

Reputation: 379

How remove striped rows in JavaFX 8 TableView

I´m using a default TableView in JavaFX8, but I need to remove the color of striped rows. How can I do this rewriten my css ?

Upvotes: 0

Views: 1193

Answers (1)

James_D
James_D

Reputation: 209684

Use

.table-view {
    -fx-control-inner-background-alt: -fx-control-inner-background ;
}

in an external CSS file.

Upvotes: 8

Related Questions