Javafx TableView Color Cells with a value using CSS -
is there way color cells of tableview value using css?
cell
s contain any value (i.e. cell
s non-empty) can selected using filled
pseudoclass, e.g. using following stylesheet:
.table-cell:filled { -fx-background-color: red; } .table-row-cell:selected>.table-cell:filled, .table-cell:selected:filled { -fx-background-color: purple; }
however cannot style cell
containing specific value using css alone.
Comments
Post a Comment