Skip to content

Commit 6cf09c9

Browse files
committed
Fixing issues related to the Web Forms API example.
1 parent fda9c0c commit 6cf09c9

File tree

5 files changed

+18
-622
lines changed

5 files changed

+18
-622
lines changed

src/main/java/com/docusign/controller/webForms/services/CreateAndEmbedFormService.java

+12-12
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,8 @@ public static EnvelopeTemplate prepareEnvelopeTemplate(String templateName, Stri
103103
.tabLabel("Yes")
104104
.anchorString("/SMS/")
105105
.anchorUnits("pixels")
106-
.anchorXOffset("20")
107-
.anchorYOffset("10")
106+
.anchorXOffset("0")
107+
.anchorYOffset("0")
108108
))
109109
.signHereTabs(List.of(
110110
new SignHere()
@@ -121,38 +121,38 @@ public static EnvelopeTemplate prepareEnvelopeTemplate(String templateName, Stri
121121
.tabLabel("FullName")
122122
.anchorString("/FullName/")
123123
.anchorUnits("pixels")
124-
.anchorXOffset("20")
125-
.anchorYOffset("10"),
124+
.anchorXOffset("0")
125+
.anchorYOffset("0"),
126126
new Text()
127127
.documentId("1")
128128
.tabLabel("PhoneNumber")
129129
.anchorString("/PhoneNumber/")
130130
.anchorUnits("pixels")
131-
.anchorXOffset("20")
132-
.anchorYOffset("10"),
131+
.anchorXOffset("0")
132+
.anchorYOffset("0"),
133133
new Text()
134134
.documentId("1")
135135
.tabLabel("Company")
136136
.anchorString("/Company/")
137137
.anchorUnits("pixels")
138-
.anchorXOffset("20")
139-
.anchorYOffset("10"),
138+
.anchorXOffset("0")
139+
.anchorYOffset("0"),
140140
new Text()
141141
.documentId("1")
142142
.tabLabel("JobTitle")
143143
.anchorString("/Title/")
144144
.anchorUnits("pixels")
145-
.anchorXOffset("20")
146-
.anchorYOffset("10")
145+
.anchorXOffset("0")
146+
.anchorYOffset("0")
147147
))
148148
.dateSignedTabs(List.of(
149149
new DateSigned()
150150
.documentId("1")
151151
.tabLabel("DateSigned")
152152
.anchorString("/Date/")
153153
.anchorUnits("pixels")
154-
.anchorXOffset("20")
155-
.anchorYOffset("10")
154+
.anchorXOffset("0")
155+
.anchorYOffset("0")
156156
))
157157
);
158158

src/main/resources/web-form-config.json

+1-605
Large diffs are not rendered by default.

src/main/webapp/WEB-INF/templates/views/pages/ds_return.jsp

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
22
<jsp:include page="../partials/head.jsp"/>
33

4-
<h2>Returned data from DocuSign!</h2>
4+
<h2>Returned data from Docusign!</h2>
55
<p>Data:</p>
66

77
<c:if test="${event != null}">
8-
<p><strong>event: ${event}.</strong> This event parameter is supplied by DocuSign via the redirect URL.
8+
<p><strong>event: ${event}.</strong> This event parameter is supplied by Docusign via the redirect URL.
99
Since it could have been spoofed, don't make business decisions based on
1010
its value. Instead, query DocuSign as appropriate.</p>
1111
</c:if>
1212

1313
<c:if test="${qpEnvelopeId != null}">
14-
<p><strong>envelopeId: ${qpEnvelopeId}.</strong> The envelopeId parameter is supplied by DocuSign.</p>
14+
<p><strong>envelopeId: ${qpEnvelopeId}.</strong> The envelopeId parameter is supplied by Docusign.</p>
1515
</c:if>
1616

1717
<c:if test="${state != null}">

src/main/webapp/WEB-INF/templates/views/pages/webforms/examples/embed.jsp

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<body>
1111
<div id="app">
1212
<div id="webform-customer-app-area">
13-
<h5 id="webforms-heading">The web form has been embedded below using the DocuSign.js library.</h5>
13+
<h5 id="webforms-heading">The web form has been embedded below using the Docusign JS library.</h5>
1414
<div id="docusign" class="webform-iframe-container">
1515
<p>Web Form will render here</p>
1616
</div>

src/main/webapp/WEB-INF/templates/views/pages/webforms/examples/web001.jsp

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<c:when test="${templateId != null}">
2626
<c:forEach var="page" items="${example.getAdditionalPage()}">
2727
<c:if test="${page.getName() == 'create_web_form'}">
28-
<p>${page.getResultsPageText()}</p>
28+
<p>${page.getResultsPageText().replaceFirst("\\{0}", "src/main/resources")}</p>
2929
</c:if>
3030
</c:forEach>
3131
<form class="eg" action="" method="post" data-busy="form">

0 commit comments

Comments
 (0)