Skip to main content
Question

Is there a way to handle load and errors from Docusign ePowerForm iframe?

  • 27 August 2024
  • 0 replies
  • 32 views

We are using an iframe to embed a PowerForm for signing envelopes on an app using React js. I wanted to ask if there is a way to handle errors (if any) and loading events outside of the iframe.

What I have tried:

<iframe
...

onError={(e) => {
console.log({ e });
}}

onLoadStart={(e) => {
console.log({ e });
}}

...
/>

 

Be the first to reply!

Reply