Hello,
I’m trying to simulate a search of a repeater widget. I have a text field named searchField, a search button named searchButton and a repeater named searchResults with a Name column.
On click of searchButton I would like to filter searchResults to show only items whose item.Name equals (or even better contains) searchField.Text
Does anyone know the syntax for this? If I create a filter that is [[item.name==‘product’]] it will return all rows with the name ‘product’, but as soon as I try to put the searchField.text variable in, the filter returns no results. I’m not sure if I’m using the wrong syntax, or if this just isn’t possible.
Any thoughts would be most appreciated! I’d also love to hear of an alternative way to fake search. My backup plan is to just have the searchButton execute the same filter every time, regardless of the search term.
Thanks,
Erica