I started to listen for selectedCells changes:
tableView.getSelectionModel().getSelectedCells().addListener(listChangeListener);
and observed the following behavior:
- each time selection changes, or even just the same selected cell is clicked again, selectedCells is cleared (even twice when setCellSelectionEnabled(true)) and then populated with values.
So for each click on the same cells I get the following changes:
1. nothing selected
[2. nothing selected]
3. selected = 0, 14
I tried to reproduce the same behavior updating a list (click and alt-click red square in the second frame to get the events) and only one event is produced each time.
tableView.getSelectionModel().getSelectedCells().addListener(listChangeListener);
and observed the following behavior:
- each time selection changes, or even just the same selected cell is clicked again, selectedCells is cleared (even twice when setCellSelectionEnabled(true)) and then populated with values.
So for each click on the same cells I get the following changes:
1. nothing selected
[2. nothing selected]
3. selected = 0, 14
I tried to reproduce the same behavior updating a list (click and alt-click red square in the second frame to get the events) and only one event is produced each time.