iOS Question CustomListView and displaying Data

ciginfo

Well-Known Member
Licensed User
Longtime User
hi,
My app collects records from a database on a server and displays them in a CustomListView.
I want when I click on an item in the list to display one or more of the same record in a label for example.
My code works in B4A (with ListView) but not with B4i (with CustomListView).
Can anyone look at the attached code and help me to find what's wrong
Thank you all
 

Attachments

  • CustomData.zip
    7.2 KB · Views: 205

stevel05

Expert
Licensed User
Longtime User
You're adding the index i as the Value instead of the Map: M

B4X:
clvActus.AddTextItem(sb.ToString,M)
 
Upvote 0
Top