Javafx TableView Color Cells with a value using CSS -


is there way color cells of tableview value using css?

cells contain any value (i.e. cells 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

Popular posts from this blog

ruby on rails - ActiveRecord order not working -

javascript - How do you prevent nested queries/catches in sequelize? -

java - ConcurrentModificationException upon committing transaction with Hibernate -