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

How to use SUM() in MySQL for calculated values -

ios - IBOutlet for image button not correctly referencing button after recreating outlet -

java - AEM: 403 Forbidden occurs when call a Post servlet -