Invoke Multiple Event Handlers From Button Click
This might be possible from a Flow, with a
Run All Branches step, but it would feel more "native" to handle it directly from the designer UI.As far as capturing results from multiple handlers ... each handler could have a "name" property to register the results under separately. Instead of accessing
button.result, you could access button.result.handler1 or button.result.handler2 to get the results from each handler separately.Any thoughts on this?