Is there an option in JavaFX to deactivate the possibility to select the items in a ListView via mouse?
I\'d like to just display a ListView
Mordechai's approach works really great.
I tried to comment with another addition for JFoenix JFXListView but the code formatting wasn't good so I created this answer:
If you are using JFoenix and the JFXListView you have also the behaviour that you can still see the JFXRippler on cell selection.
To prevent this or change the rippler override the cell factory:
//Replace T with your specific type.
listView.setCellFactory(param -> new JFXListCell() {
@Override
protected void updateItem(T item, boolean empty) {
super.updateItem(item, empty);
cellRippler = new JFXRippler(); //create empty rippler
}
});