How to get GridPane Row and Column IDs on Mouse Entered in each cell of Grid in JavaFX?
You can get the values by calling GridPane.getColumnIndex(node) and GridPane.getRowIndex(node). You haven’t shown what you’re putting in the grid pane, and even whether you are populating it in FXML or in Java, but here’s some basic functionality. Here I (tediously) populate the GridPane in FXML, it might be better to populate it in Java (i.e. … Read more