M manuelsalazar Member Licensed User Nov 8, 2019 #1 Klaus : How can I obtain when info from CellClick in Table3.3 so I can get the product code of the selected row ????? Thanks in Advanced. Manuel Salazar
Klaus : How can I obtain when info from CellClick in Table3.3 so I can get the product code of the selected row ????? Thanks in Advanced. Manuel Salazar
klaus Expert Licensed User Longtime User Nov 8, 2019 #2 The CellClick event returns the row and column indexes. With these values you can get the information in the given cell. B4X: Sub Table1_CellClick(col As Int, row As Int) Log(Table1.GetValue(col, row)) End Sub Upvote 0
The CellClick event returns the row and column indexes. With these values you can get the information in the given cell. B4X: Sub Table1_CellClick(col As Int, row As Int) Log(Table1.GetValue(col, row)) End Sub