Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

MHWinter
MHWinter
Online

Badges

Badges
24

Accepted Solutions

Accepted Solutions
14

Likes Received

Likes Received
65

Posts

Posts
71

Discussions

Discussions
13

Questions

Questions
58

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by MHWinter
Customize the badges you want to showcase on your profile
Re: On which event should I run a script to after a user would import data into the form? - Adobe Experience Manager Forms 28-02-2022
... And I just realize another issue: if I import data into an already signed form, the signature was not removed,... so there is now a data mismatch between the date of signature and and the recorded dates in the log. I thought importing data would reset the form first, including signatures. Any thoughts?

Views

165

Like

1

Replies

2
On which event should I run a script to after a user would import data into the form? - Adobe Experience Manager Forms 28-02-2022
I have a form that incorporates a signature.We decided to add a text field to log the changes to the signature. Essentially if the signature changes, it appends the date and time of the change, and the Signature information (signatureInfo().statusText);I also have a numeric field that records the SignatureValidate() value at the time of the change. The reason for this is to track in particular if a signature might have been removed other that by a user clearing its own signature, in particular b...

Views

167

Likes

0

Replies

5
Re: hidden subforms visible when exported to adobe reader - Adobe Experience Manager Forms 24-02-2022
Would you like to share your form so we can try to figure it out?

Views

200

Like

1

Replies

5
Re: Need help making timesheet to calculate total hours possible in a pay period - Adobe Experience Manager Forms 18-02-2022
actually, ppCurrent.getDay()== to 5 and 6 correspond to Friday and Saturday, but because I had the script for coloring the background after the line incrementing row number (rowNum++), if was coloring the row after the one I intended (therefore Sunday Monday (or an empty row if the last day of the PP was a Sat or Sun. Here is the script that should work://loop through pp//clears Day and Date columns to prevent extra rows is user changes monthfor(var i=1; i<=16; i++){Table1.resolveNode("Row" + i)...

Views

168

Like

1

Replies

1
Re: Need help making timesheet to calculate total hours possible in a pay period - Adobe Experience Manager Forms 18-02-2022
for the reset button, add the lines in blue:xfa.host.resetData();for(var i=1; i<=16; i++){resolveNode("form1.page1.Page1.Table1.Row" + i).fillColor = "255,255,255"; } regarding the background, my mistake, move the script above the row++ line.

Views

176

Like

1

Replies

4
Re: Need help making timesheet to calculate total hours possible in a pay period - Adobe Experience Manager Forms 18-02-2022
just add the blue line below to the loop that clears the fields before assigning the dates and days //loop through pp//clears Day and Date columns to prevent extra rows is user changes monthfor(var i=1; i<=16; i++){Table1.resolveNode("Row" + i).Day.rawValue = "";Table1.resolveNode("Row" + i).Date.rawValue = "";Table1.resolveNode("Row" + i).fillColor = "255,255,255";}

Views

181

Like

1

Replies

6
Re: Need help making timesheet to calculate total hours possible in a pay period - Adobe Experience Manager Forms 18-02-2022
and for the required hours, if I understand correctly, it should count 8 hours for each day Mon-Fri.If so, the following code addresses both the background on weekends and the required hours calculation. var rowNum = 1;var nWorkDays = 0;for(var i=pp.getDate(); i<=ppEnd.getDate(); i++){pp.setDate(i);var ppCurrent = new Date(pp.getFullYear(), pp.getMonth(), pp.getDate());Table1.resolveNode("Row" + rowNum).Day.rawValue = days[ppCurrent.getDay()];Table1.resolveNode("Row" + rowNum).Date.rawValue = (p...

Views

185

Like

1

Replies

8
Re: Need help making timesheet to calculate total hours possible in a pay period - Adobe Experience Manager Forms 18-02-2022
regarding the background for Saturdays and Sundays, you can add the following script to the final For loop in form1.page1.Page1.employeeScheduleInfo.PayPerDate::exit// Color backgrounf if Saturday or Sundayif (ppCurrent.getDay()==0 || ppCurrent.getDay()==6){Table1.resolveNode("Row" + rowNum).fillColor = "220,220,220";}

Views

187

Like

1

Replies

0
Re: trying to implement country/state dropdown on developing a component - Adobe Experience Manager Forms 11-02-2022
I recommend you check this tutorial by True Tech troubleshooting https://www.youtube.com/watch?v=8G7ORv0Sijw I have used a different script that I adapted from one found online,... can't find out where... to populate the State or Provinces for the US Australia, Canada, Brazil, Japan, or leave it open if it's any other country. In a script object:form1.#variables[0].StateProvinceDropDownScript - (JavaScript, client)// This script object controls the interaction between the Country field and State...

Views

173

Like

1

Replies

0