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

ABlackmer
ABlackmer
Offline

Badges

Badges
4

Accepted Solutions

Accepted Solutions
0

Likes Received

Likes Received
0

Posts

Posts
4

Discussions

Discussions
0

Questions

Questions
4

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by ABlackmer
Customize the badges you want to showcase on your profile
Re: Calculating error, need some help. - Adobe LiveCycle 19-08-2010
Thanks Srini, that worked perfectly!Aaron

Views

95

Likes

0

Replies

0
Calculating error, need some help. - Adobe LiveCycle 19-08-2010
I am currently working on an order form that has multiple items, each in their own sub form. I am using the following script in the layout:ready function on my total box. The problem I am having is it is only adding up the totals from the first page of the form, and not recognizing the totals from the second page of the form. any help would be great, thanks!varfields = xfa.layout.pageContent(0 , "field", 0);var total = 0;for (var i=0; i <= fields.length-1; i++) {if (fields.item(i).name == "p1") ...

Views

460

Likes

0

Replies

2
Re: Coding & Calculating like Excel - Adobe LiveCycle 19-08-2010
This script should be used on your "Total" field, forgot to mention that.

Views

210

Likes

0

Replies

0
Re: Coding & Calculating like Excel - Adobe LiveCycle 19-08-2010
Alex,Try plugging in this using JavaScript under the calculate function. "subTotal", "CheckBox", grandTotal" will need to be changed to match your current Binding name in the object pallet.this.rawValue= subTotal.rawValueif (CheckBox.rawValue == true)grandTotal.rawValue= subTotal.rawValue * .093;elsegrandTotal.rawValue= subTotal.rawValue;Aaron

Views

217

Likes

0

Replies

0