How to use arrow buttons to traverse cells in edit mode in TableView
问题 I'd like to use the arrow/enter keys to traverse the cells in TableView , however, if I try to implement it in my custom EditCell class, it doesn't seem to work. Is there a way to make this happen? I've tried a listener on the TextField but it doesn't actually start the focus in the actual cell. Here is my code: Tester.java package tester; import javafx.application.Application; import javafx.scene.Scene; import javafx.scene.control.TableCell; import javafx.scene.control.TableColumn; import