I've searched for ages and have come up short. I have a TableView that is receiving data from another source (not the user).
One of the TableColumn in my TableView is an Integer column and for a cell in this column I would like to be able to set the cell color red if the new integer value is lower than the current (old) value, and green if its above the current (old) value.
I can find plenty of examples that use setOnEditCommit but none that show how this could be done when there is no user input.
Does anyone have any ideas on how I could approach this ?
Thanks