Listview with filter bar

Hi there…
Im using kodular…and then using liatvieq to read all data…
But every time i use filter bar above it…the listview index is not corret…its always referring listview number 1 if i use filter bar

/Boban

If your original listview has 4 items in it and you do a filter that returns 1 item, then when you select it, it will always return an index of 1, because in the new filtered list, it is the first and only item. You will need to get the text of the item you select and then lookup that value in the listview (complete list) and get the correct index number from the lookup. Hope that makes sense.