HOW DO I CREATE A SEARCH BAR

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:

I hope this helps!
Massa