Greetings Community,
Per the attached image, there are two checkboxes in the same row. How do I make one checked whiles the other in the same row isn't.
I use the below code to uncheck all rows fields in the clv when one field is checked. How do i do same for the same row?
Per the attached image, there are two checkboxes in the same row. How do I make one checked whiles the other in the same row isn't.
I use the below code to uncheck all rows fields in the clv when one field is checked. How do i do same for the same row?
B4X:
For i = 0 To CustomListView1.Size - 1
' Dim pi As B4XView = CustomListView1.GetPanel(i)
Dim ll As B4XView=pi.GetView(0)
If i <> ItemIndex And ll.text = s Then
For Each v As View In pi.GetAllViewsRecursive
If v Is CheckBox Then
pi.GetView(3).Checked = False
End If
Next
End If
Next