ListView Search

Hello everyone,

I previously had a functional search setup using ScrollBox, but I’ve found that ListView offers more of the functionality I need. Is there a way to implement a search feature within a ListView?

Since ListView entry widgets are created and destroyed on demand, I understand their visibility can’t simply be set to “collapsed.” Any advice on how to approach this would be greatly appreciated!

This is how the ScrollBox search worked: ScrollBoxSearch posted by anonymous | blueprintUE | PasteBin For Unreal Engine

Perhaps a tree view with expanding elements could be an option? Though expanding / collapsing only applies to children.

Otherwise you would probably need to filter the list elements, have a separate array that holds the whole list and add / remove items based on text inputs

Filtered