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

RusticRanger2
RusticRanger2
Offline

Badges

Badges
13

Accepted Solutions

Accepted Solutions
2

Likes Received

Likes Received
4

Posts & Comments

Posts & Comments
53

Discussions

Discussions
0

Questions

Questions
13

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by RusticRanger2
Customize the badges you want to showcase on your profile
Re: Referencing subform instances - Adobe LiveCycle 27-08-2014
I have figured this out myself - it turned out that the recalculate was not working, so I had to use .execCalculate rather, plus a few other workarounds

Views

1.1K

Likes

0

Replies

0
Re: Referencing subform instances - Adobe LiveCycle 14-08-2014
For each currency, the user can declare as many shares as they like for that currency - that is where the sum is. The do3 var is getting that sum - and transferring it to another area. If the user declares another currency (so now they have 2 currencies, again they can add as many shares in that currency. Again the do3 is supposed to grab that new value for the new currency, and transfer it to that other area, but to a different variable. Do you want me to send you the PDF?

Views

1.1K

Likes

0

Replies

0
Re: Referencing subform instances - Adobe LiveCycle 13-08-2014
Maybe I was not clear - the totals on page 2 are for each currency on their own - I already have another area where it collects the total number of shares into a single total, and that is already a Sum, and works fine collecting up figures from around the form. This issue here is that one field collects all the values for one currency, another field for another currency. The script I have shown is to collect up all contributing figures for dollars. I have other scripts for the other currencies.I...

Views

1.1K

Likes

0

Replies

0
Re: Referencing subform instances - Adobe LiveCycle 12-08-2014
I have changed the operators to no effect. I think the problem has to do with the third variablevar do3 = topmostSubform.Page6.currency.Row2[*].calcs.total_aggregate_cont_dollar.rawValue //page 6 valuethis only provides the value of the first instance of the subform "currency" = this subform contains the value total_aggregate_cont_dollar - I want it to find that value from whichever instance of currency it occurs

Views

1.1K

Likes

0

Replies

0
Referencing subform instances - Adobe LiveCycle 12-08-2014
I have a tricky issue now that I am hoping someone can help with. I have an 8 page XFA form where the first 4 pages cannot be made expandable because the recipient company has to scan them when sent in by customers - so layout has to stay fixed. On page 2 there are three tables with fixed number of rows where the user can declare their shares in different currencies. If they have more shares than the rows allow, or more currencies, they can go to page 6 where they can add other currencies or mor...

Views

2.7K

Likes

0

Replies

8
Re: Save method for digital signatures - Adobe LiveCycle 18-06-2014
Hi - these are all reader extended through Livecycle ES Reader extensions and are signed by users in Reader. What I am asking is if anyone has an idea where this behaviour is declared, so that I can change it.

Views

1.0K

Likes

0

Replies

0
Save method for digital signatures - Adobe LiveCycle 17-06-2014
Hi - I have several thousand forms all set up for digital signatures, which I use for locking down the form fields (render read-only). This works fine. The problem I have is that when a user digitally signs the form, they automatically get asked to Save As - with a default location on the local machine. Can this be changed to allow the user to simply save and overwrite the form in its original location. Of course there is a danger with doing this, but users with document/case management systems ...

Views

1.3K

Likes

0

Replies

2
Re: Autonumber for several fixed rows - Adobe LiveCycle 22-01-2014
Oh well - found my own solution. Same as the above, but "On a text field in that row, I use the Layout:Ready event with var vIndex = ["(a)", "(b)", "(c)"]; var i = this.parent.index;this.rawValue = vIndex[i];This produces rows with (a), (b) and (c) - and the deletion works to remove the row and renumber the remaining ones.

Views

1.0K

Likes

0

Replies

0
Autonumber for several fixed rows - Adobe LiveCycle 22-01-2014
I have often used the autonumber for dynamic row instances with no problem, but now have a problem where my table starts with 3 rows with different content, and the user needs to be able to add and delete rows, at the same time maintaining the autonumbering.I created the table with three rows, and each row has the same name (Table1.Row) - I set the Binding to Repeat row with Initial Count set to 1 - no Minimum countOn a text field in that row, I use the Calculate event with var vIndex = ["(a)", ...

Views

1.4K

Likes

0

Replies

1
Re: Format Table Row Auto Numbering - Adobe LiveCycle 22-01-2014
Perhaps you have too many parentstry: this.rawValue = this.parent.index + 1;

Views

810

Likes

0

Replies

0