Re: How To - TextInput.OnChange without pressing ENTER key
Hey @R3dKap I was facing the exact same problem but I have found a quick hack to activate the filter, in my case I want to hide a search gallery when then string in the text field is empty and show the results when they are some to show. Also I didn't want the user to need to press enter to run the search queries, so what I have is an IF function that checks the Len of Text in the Text Input field, this way you could trigger something else, a filter, visible true or false, etc.
Its something like this, but you could add other functions inside, in my case I'm limiting it to 2 characters in the string but it could be > 0:
If(Len(TextInput1.Text) >= 2, true, false)
Hope it works for you, greetings.