It would have been useful if the event also provided the value of the clicked cell:
so you don't have to write the following code:
I assume that due to backwards compatibility it is now no longer possible to change the signature of that event.
You could create a CellClicked2 or CellClick event.
B4X:
Sub B4XTable1_CellClicked (ColumnId As String, RowId As Long, Value As Object)
B4X:
Sub B4XTable1_CellClicked (ColumnId As String, RowId As Long)
Dim RowData As Map = B4XTable1.GetRow(RowId)
Dim cell As String = RowData.Get(ColumnId)
Log(cell)
End Sub
You could create a CellClicked2 or CellClick event.