How to get the TableRow index (JavaFx TableView)
问题 I have a TableView in which I have a clients emails column. In the emails column there is a Label called emails that should get populated with emails from the database depending on the column in which the Label is on. The text is retrieved from a database and therefore, to get a specific email address, I need to get the row index, and query for that particular email with something like: "SELECT email from Clients WHERE clientID = " + rowItemRecord.getClientID()); My approach so far is as