Hi, I recursively go throught a panel, and I've troube dealing with B4XFloatTextField : here is the code
B4X:
Dim pn = findPanel(clv2, "epi2") As Panel
For Each v As View In pn.GetAllViewsRecursive
If v Is B4XFloatTextField Then
Dim vx As B4XFloatTextField = v '''Types do not match as the compiler complains
Dim m As Map
m.Initialize
m.Put(vx.tag,vx.text)
ListOfMaps.Add(m)
End If
Next
Last edited: