Hi,
I would just to know if it is possible to listen for a cell selection change in a TableView.
I know that is it possible to listen for a row selection change by doing something like this:
TableView table = new TableView();
table.getSelectionModel().setCellSelectionEnabled(true); // Enable cell selection
table.getSelectionModel().selectedItemProperty().addListener(...)
But it seems like it is not possible to listen when a individual cell is selected.
Is there a workaround for this ?
Thanks.
I would just to know if it is possible to listen for a cell selection change in a TableView.
I know that is it possible to listen for a row selection change by doing something like this:
TableView table = new TableView();
table.getSelectionModel().setCellSelectionEnabled(true); // Enable cell selection
table.getSelectionModel().selectedItemProperty().addListener(...)
But it seems like it is not possible to listen when a individual cell is selected.
Is there a workaround for this ?
Thanks.