Sub Cities_ItemClick (Value As Object) 'Cities is the name of the MiniSearchView
Dim c As MiniSearchView = Sender
Log($"Method1, city select: ${c.TextField.Text}"$)
Dim index As Int = xClv.GetItemFromView(c.mBase) 'mBase needs to be changed in the class module from Private to Public
Log($"Index: ${index}"$)
Dim p As B4XView = xClv.GetPanel(index) 'base panel
Dim pp As B4XView = p.GetView(0) 'card panel
Dim strVar As String = pp.GetView(0).GetView(0).Text
Log($"Method2, city select: ${strVar}"$)
End Sub