Is there an option in JavaFX to deactivate the possibility to select the items in a ListView via mouse?
ListView
I\'d like to just display a ListView
Try in the code:
list.setFocusTraversable( false );
and in CSS
.list-cell:odd, .list-cell:even { -fx-background-color: white; -fx-text-fill: black; }