JavaFX: animate (fade) tablecell background

is there any way to access the JavaFX background color TableCell

so it can be animated like this:

FadeTransition ft = new FadeTransition(Duration.millis(500), [insert Object here]);

      

The goal is to make it flash for half a second after a successful edit ...

Thank you so much!

+3


source to share





All Articles