I have this Block of code
OBS:but the var qtdeItems always get the first value of the Index .
OBS2: I want a way to get only the EDIT QTDE view when it is greater than 0, but I did not find a way to do this. any suggestion ?
B4X:
Sub Find_items_customLSTview
Dim i As Int
Dim iv As ItemValue= CustomListViewPRODUTOSESCALONADOS.GetValue(i)
Dim qtdeItems As Int
For i=0 To CustomListViewPRODUTOSESCALONADOS.Size -1
qtdeItems = EditTextQTDECustomListView.Text
If qtdeItems > 0 Then
Log( CustomListViewPRODUTOSESCALONADOS.GetValue(i))
End If
Next
End Sub
OBS:but the var qtdeItems always get the first value of the Index .
OBS2: I want a way to get only the EDIT QTDE view when it is greater than 0, but I did not find a way to do this. any suggestion ?