Expand my Community achievements bar.

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

Former Community Member
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.