Barra de filtrado

Hola, queria consultar si se puede hacer una barra de filtrado sin mostrar la lista entera al principio, gracias!!

You cannot do that with just the default ListView component. However, it can be done with a TextBox and a ListView, although you’ll have to make the filtering code yourself (for…each, a logic check and an array push). Make the ListView hidden by default, and show it once the filter criteria has been entered (preferably using MultiLine TextBox and detecting “\n”; remember to remove “\n” from filter using a replace all block)

1 Like