Hello,
in this little code ...
Sub B4XTable1_CellClicked (ColumnId As String, RowId As Long)
Dim licol As Map = B4XTable1.GetRow(RowId)
For i=0 To licol.Size-1
Log(licol.GetKeyAt(i) & " - " & licol.GetValueAt(i))
Next
end sub
I can have the Keys but the app returns 'null' for each Value, knowing that the array of the getting action is in a Map (seen in different forums).
The table is correctly filled with values.
Here is a result :
id - null
date - null
fournisseur - null
ville - null
affectation - null
montant - null
numfacture - null
modepaiement - null
numcheque - null
comptepayeur - null
titulaire - null
sousaffectation - null
note - null
codebarres - null
an - null
null
mois - null
jour - null
How to solve it ? Did I forgot something ?
Is it a problem of type ?