Hello Daniel
creating the search bar will depend on what you are searching (database, repeater, table, …).
however, to show items that contain or equal what key a user enter you can set a filter with this key.
basic steps of how to do that:
- add text input element
- get the value (on key press / on button click / …)
- set filter to the data set based oh this value
- show the remaining data set items (in a repeater / table/ …)
here’s some useful links:
- text input: https://www.wix.com/code/reference/$w.TextInput.html
- data sets: wix-dataset - Velo API Reference - Wix.com
- filtering :wix-data - Velo API Reference - Wix.com
- repeaters: https://www.wix.com/code/reference/$w.Repeater.html
- tables: https://www.wix.com/code/reference/$w.Table.html
I hope this helps!
Massa