I have a tableview populated by dbutils
I want the selected row values to use ...
Sub tableview_SelectedRowChanged(Index As Int, Row() As Object)
Dim s As String
If Index = -1 Then Return
s=Row(0)
Log(s) 'id is the first column
End Sub
output AnchorPane@6fabf74c instead of the data, WHY?
I want the selected row values to use ...
Sub tableview_SelectedRowChanged(Index As Int, Row() As Object)
Dim s As String
If Index = -1 Then Return
s=Row(0)
Log(s) 'id is the first column
End Sub
output AnchorPane@6fabf74c instead of the data, WHY?