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

amazon web services - S3 Pre-signed POST validate file type? -

c# - Check Keyboard Input Winforms -