Can someone help me with this: I built a searchfunction that works well. The setting is a: textinputbox that replies search options after an ‘enter’. I want to skip the enter and use 2 Icons, the searchIcon (loupe) and the delete Icon (cross). This is producing a strange problem. When I enter 2 or 3 letters in the searchbox, the search icon disappears and the delete icon remains visible. So after entering a searchword you can not klick on the search icon.
The formules I use on the 2 Icons are:
- Search Icon
- Visible: If(IsBlank(Searchfield.Text); true; false)
- OnSelect; Set(SearchQuery;Searchfield.Text)
- Delete Icon
- Visible: If(IsBlank(Searchfield.Text); false; true)
- Set(SearchQuery;””)&Reset(Searchfield)
As I live in the Netherands a “,”should be “;” and for 2 functions we have to use & in stead of “;”.