Skip to content
Advertisement

JavaFx How to set row background color of specifics rows in TableView

I’m using TabelView with 2 columns:

JavaScript

I have a logic which calculate row number, and I need to set the background of this row to red (every several seconds I’m calculating the row and I need to set the caculcated row background to red.

I check those Q’s:

Colouring table row in JavaFX

But it does help. So I can I set a random row, it’s background color ?

Advertisement

Answer

Depending on exactly what you need, you can do:

JavaScript

Here is a SSCCE:

JavaScript

If multiple rows might need to be red at the same time, make the obvious modifications with an ObservableList containing the items whose rows should be red, etc. You might also consider adding a BooleanProperty to the model class and letting the table row observe it.

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement