I need TableView JavaFX 2.0, but I do not want it to respond to mouse clicks. Of course, I can turn off the control / widget, but then it turns off.
tableview.setSelectionModel (null) gives the behavior I would like, but the user interface removes stack traces complaining about zero. I can not catch zero.
I am trying to create some sort of SelectionModel or TableViewSelectionModel that has some methods gutted, so it is not responding. It is difficult for me to extend these classes or to carry out theses.
Ideas for disabling clicks in TableViews?
source
share