Hi there,
I have an App used by lots of users, and on one of the screens, I have a button which basically uses Flow to attach data to the user profile on click of the button.
Problem I am having is, some users are hitting the button twice, sometimes more and its running the flow and duplicating the info.
I would like a simple way of disabling the button once its clicked so avoid duplication.
Initially I applied the following,
On the button OnSelect I have Set(varButtonPressed, true)
And then in the DisplayMode property code is If(varButtonPressed,DisplayMode.Disabled, DisplayMode.Edit)
This works, but of course only the one time, and as many users use the App, I need it to be available for anyone who hasnt already pressed the button.
Any ideas how I can achieve this?
Thanks