Expand my Community achievements bar.

Elevate your expertise and be recognized as a true influencer! Nominations for the exclusive Adobe Community Advisor program 2023 are now OPEN.

Invoking a click event from another button

Avatar

Level 2
I have a button that concatenates data to prepare it for submission. I have another HTTP Submit button in my form for that data.



I would like to cause the concatenating button to do what it's doing, and then subsequently force a click event of my HTTP Submit button or just move the functionality of the HTTTP Submit button to my concatenating button.



Either works, but it would be nice to know how to chain events like that.
2 Replies

Avatar

Not applicable
In the button that the user clicks you can add this code:



SubmitButtonName.execEvent("click");

Avatar

Level 2
That did it. Didn't know the syntax.

Thank you so much Paul.