B4J Question TableView Get Cell Values

rwblinn

Well-Known Member
Licensed User
Longtime User
Hi,

how to get the cell values for a row when tableview selection changed?

Tried below code but it gives some cryptic value?
(TableView reading column 2 for Index:1 Cell value: AnchorPane@139c79f)

B4X:
Sub tv_SelectedRowChanged(Index As Int, Row() As Object)
    Log("TableView reading column 2 for Index:" & Index & CRLF & " Cell value: " & Row(1))
End Sub
 
Top