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

a_c_hoff
a_c_hoff
Offline

Badges

Badges
13

Accepted Solutions

Accepted Solutions
1

Likes Received

Likes Received
3

Posts & Comments

Posts & Comments
40

Discussions

Discussions
0

Questions

Questions
24

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by a_c_hoff
Customize the badges you want to showcase on your profile
Re: Help, signatureValidate() function doesn't work on hidden fields - Adobe LiveCycle 20-03-2015
Unfortunately I can't set the fields to white because they are within a flowed subform. I need them to be hidden so that they do not take up space and affect form layout. Otherwise, that would likely work.

Views

400

Likes

0

Replies

0
Re: Help, signatureValidate() function doesn't work on hidden fields - Adobe LiveCycle 18-03-2015
I discovered a dirty workaround that seems to solve the problem. I added several numeric fields that are hidden and in the postSign and the Change event of each signature field, I evaluate whether a signature was applied or removed and change the value of the numeric field to either a 0 or a 1. Then, instead of checking the signature fields for a signature, I check against the value of the hidden numeric field. This is a poor workaround, and if anyone is able to help me figure out how to actuall...

Views

397

Likes

0

Replies

0
Re: Help, signatureValidate() function doesn't work on hidden fields - Adobe LiveCycle 18-03-2015
The fields are supposed to be hidden when the form is opened, but can be "added" (made visible) by the user to allow for additional signatures. I use hidden fields rather than a simple Add Instance because of data binding issues.I tried modifying the script to make the fields visible, fire the validation, and then hidden again, but for some reason it would either not work or it would make them visible after the first change and then hidden only if the field was changed again. Also, the code has ...

Views

398

Likes

0

Replies

0
Help, signatureValidate() function doesn't work on hidden fields - Adobe LiveCycle 17-03-2015
I am trying to use the signatureValidate() function to check if any signature fields are signed. I am doing this because I need to have the signature fields lock the form manually so that a specific department can make changes after signatures have been applied (via a password field). I got the signature fields to lock the form and I can unlock everything with a password dialog. However, I am trying to add some code to the Change event so that if a user clears their signature and no other signat...

Views

1.3K

Likes

0

Replies

6
Unlocking fields locked by a signature (need answer) - Adobe LiveCycle 16-03-2015
So I have a form with signature fields that, when signed, lock all fields in the form. I want to add a button in my form that will allow specific users to unlock form fields that have been locked by the signatures so that changes can be made after the signatures have been applied, without removing the signatures.I tried creating a button that would prompt users for a password, and if they entered the correct password it would unlock the fields. This works when a field is locked in any other inst...

Views

926

Likes

0

Replies

0
Showing/hiding a row in the previous instance of a table section - Adobe LiveCycle 10-02-2015
I have built a table with a repeatable table section so that users can add additional sections to the table as needed. In one of the rows, I want to have a button that will hide a specific row in the previous instance of the table section. Is there a way to specifically identify the previous section? I have no idea how I would write that in Javascript.Thanks for any help that you can offer.

Views

424

Likes

0

Replies

0
Issue with expandable textfield breaking across page - Adobe LiveCycle 19-12-2014
Hi all,I have encountered an issue with one of my expandable text fields. When the end of the text field has just one or two lines that break across the page, the resulting text on page 2 appears outside the boundaries of the text field. In addition, when I enter (click in) the portion of the field on page two, the field text will appear at the top of the first page over all of my other fields. Has anyone encountered this issue before, and is there a fix? I am using LiveCycle Designer ES2 to cre...

Views

413

Likes

0

Replies

0
specifying an instance of a repeatable row - Adobe LiveCycle 10-12-2014
I am trying to bind the data between two fields that are both repeatable. Basically, I have a table with a repeatable row, and in this row the user will enter a part name and a part number and various other information. They will also specify wither the part is "New" or "Change." For each part that is marked as "Change," I add an instance to a repeatable table on another page of the form (this table is only present for parts marked as "Change," so if I have five rows in the first table and only ...

Views

810

Likes

0

Replies

2
Re: Removing the same row instance from two separate tables - Adobe LiveCycle 09-12-2014
Thank you Magus. This helped a lot. For those who are interested, the code I had in the click event of the Remove Row button in table 1 was:for (i = 0; i < Table_1._Row1.count; i++) { if (this.parent.parent.index === i) { this.resolveNode('form1.Subform1.Simple_disposition_table.Table_2._Row1').removeInstance(i); }} this.resolveNode('form1.Subform1.Large_sig_disposition_table.Table_1._Row1').removeInstance(this.parent.parent.index);

Views

540

Likes

0

Replies

0
Removing the same row instance from two separate tables - Adobe LiveCycle 09-12-2014
Hi all,I have two tables that each have repeatable rows. The two tables should display almost the same information in each instance of the row (I managed to code in a way to bind the values in specific instances of the rows). However, I have added a button within the repeatable row that allows the user to remove the current instance of the row, so that if they look back and realize they don't need a row, they can take it directly out of the table. However, I cannot seem to have the button remove...

Views

848

Likes

0

Replies

2
Likes given to