Hey guys,
I've got a problem and tried to solve the issue but I don't get it anyway. I don't know how to succeed.
I just want to disable the button if the timer is running. I press the button, the timer starts and now the button should be disabled during the timer is running. If the timer has finished, then the timer gets back to Edit mode.
But how to achieve this?
Here you can see more about the procedure with the timer and what I've implemented:
https://powerusers.microsoft.com/t5/Building-Power-Apps/Possibility-of-effect-if-new-record-is-added-in-Gallery/m-p/632392#M200491
I've tried to write following in DisplayMode of the button:
If(timer.Start; DisplayMode.Disabled)
or
If(timer.Value < timer.Duration; DisplayMode.Disabled)
Here the button is disabled at the beginning but it shouldn't.
Really appreciate your help!
ThePowerAppsGuy