Custom Send Button - Detect if signature has been added
Wednesday, June 22, 2016 at 04:48amWe have embedded the prepare iframe within our application and ran into a little hiccup. We use a custom Send button to match our application, but we need to determine if a signature field has been added before allowing users to proceed. Is there a way for us to determine that? If not is there a way for support to change the appearance of the "Send" button that appears in the iframe?
Reply to: Custom Send Button - Detect if signature has been added
Wednesday, June 22, 2016 at 06:31amReply to: Custom Send Button - Detect if signature has been added
Wednesday, June 22, 2016 at 09:07amReply to: Custom Send Button - Detect if signature has been added
Wednesday, June 22, 2016 at 09:19amReply to: Custom Send Button - Detect if signature has been added
Wednesday, June 29, 2016 at 11:41amReply to: Custom Send Button - Detect if signature has been added
Thursday, June 30, 2016 at 05:35amEslClient client = new EslClient(key, url); PackageId packageId = new PackageId("f_GegBl2kXc9Bc_H9BYACHsRVNA="); DocumentPackage package = client.GetPackage(packageId); IList docs = package.Documents;
foreach (Document doc in docs)
{
IList sigs = doc.Signatures;
if (sigs.Count() != 0)
{
foreach (Signature sig in sigs)
{
Debug.WriteLine(sig.SignerEmail);
}
}
} Reply to: Custom Send Button - Detect if signature has been added
Thursday, June 30, 2016 at 07:45amReply to: Custom Send Button - Detect if signature has been added
Thursday, June 30, 2016 at 08:29amReply to: Custom Send Button - Detect if signature has been added
Thursday, June 30, 2016 at 08:44amReply to: Custom Send Button - Detect if signature has been added
Thursday, June 30, 2016 at 10:14amReply to: Custom Send Button - Detect if signature has been added
Thursday, June 30, 2016 at 10:58am