B4J Question Custom List View Panel Refresh

Marcos Alves

Well-Known Member
Licensed User
Longtime User
Hello all,

In a customListView I'm trying to update some panels using this code:

B4X:
Dim p As B4XView = CLV1.GetPanel(i)
p = createItem(orderId,clientName,orderStatus,orderValue)

Where createItem is the same routine used to create the panel. But the Custom List View Panel isn't being updated evem when I add CLV.Refresh after. Does anybody know what I'm doing wrong?

Thanks!
 

mangojack

Well-Known Member
Licensed User
Longtime User
I have created a small example based on you data above.

It includes sample code to update panes and view data from button clicks, row clicks & loops

Hopefully it is of some help.
 

Attachments

  • CLV Interaction Example.zip
    4.5 KB · Views: 251
Upvote 0
Top