Hi,
Case:
I have a xCustomListView with a Checkbox on every row.
I have an EditText containing a text to search within/filter the view.
Currently I use to fill the CustomListView:
I need the possibility to check the Checkbox of more than one row.
For every check I need to have another search-action based on the content of the EditText.
Reload the clv by using clv.clear is no options, because of the lost of the checkboxes before.
Question:
Is it possible to Filter a xCustomListView based on the Label.text on the row?
Kind regards,
André
Case:
I have a xCustomListView with a Checkbox on every row.
I have an EditText containing a text to search within/filter the view.
Currently I use to fill the CustomListView:
B4X:
SearchString="SELECT Code FROM "&Main.DBContainers
If(Search <> "") Then SearchString=SearchString.Trim&" WHERE Code LIKE '%" &Search& "%'"
SearchString=SearchString.Trim&" ORDER BY Type, Code"
I need the possibility to check the Checkbox of more than one row.
For every check I need to have another search-action based on the content of the EditText.
Reload the clv by using clv.clear is no options, because of the lost of the checkboxes before.
Question:
Is it possible to Filter a xCustomListView based on the Label.text on the row?
Kind regards,
André