how to differentiate between a single click or double click on a table row in javafx
问题 I am trying to create a table in javafx that allows a user to click on a row to go to one page or double click the row to go to a different page. The problem is that the application registers the event of the single click, but does not wait to see if there is another double click. Is there a way to have the program wait and see if there is another click? what i have so far looks similar to something like TableView searchResults; ObservableList<MovieRow> rows = FXCollections