Hi all,
Anyone would have an idea of how to trigger the OnChange event of a TextInput control wihtout pressing the ENTER key but by just modifying its content.
I want to use this TextInput control as a filter for a gallery and I want the gallery to filter as the user types characters in the text input control (wihtout having to press the ENTER key).
Thanks,
Emmanuel
thanks
@R3dKap wrote:Hi all,
Anyone would have an idea of how to trigger the OnChange event of a TextInput control wihtout pressing the ENTER key but by just modifying its content.
I want to use this TextInput control as a filter for a gallery and I want the gallery to filter as the user types characters in the text input control (wihtout having to press the ENTER key).
Thanks,
Emmanuel
You can just insert a slider control, set its defult value to "Len(YourTextField)", and then add to the slider on change the action you want to do in every change in the text field. I tested on my side and works fine.
Set the slider visible property to false.
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.
Hi @CarlosFigueira,
Yes of course, I know this is possible. But in some cases, we can't reference the label text value directly in the gallery datasource property.
My post here is rather to outline that some controls don't have their events triggered when they should be as their meaning is clearly specified in the PowerApps editor.
Here is the example of the checkbox control:
I'm having a hard time finding some sense in this behavior... What's your (or others) opinion on this ?
Emmanuel
If the Items property of your gallery references the content of the text input control directly, then it will be filtered based on when the user is typing on it. For example, if you have your gallery Items property set to
Filter(MyDataSource, StartsWith(MyColumn, TextInput1.Text))
then you should achieve what you want.
Hope this helps!
Stay up to date on forum activity by subscribing. You can also customize your in-app and email Notification settings across all subscriptions.