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

agodina
agodina
Offline

Badges

Badges
9

Accepted Solutions

Accepted Solutions
0

Likes Received

Likes Received
0

Posts & Comments

Posts & Comments
26

Discussions

Discussions
0

Questions

Questions
12

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by agodina
Customize the badges you want to showcase on your profile
Re: List Box Not Saving Attachment Entries - Adobe LiveCycle 17-02-2012
Hey,It was set to 'Manual'. I set it to 'Automatic' and removed the code from Initialize event of the List Box. Now it is working perfectly. Thank you very much for your assistance and quick reply.

Views

234

Likes

0

Replies

0
List Box Not Saving Attachment Entries - Adobe LiveCycle 17-02-2012
I am creating a form that allows users to save attachments to it. I searched the Discussion threads and found code that accomplished this. Under the click event of an "Add Attachment" button I have the following JavaScript code:var myDoc = event.target;var sFile = "myFile";myDoc.importDataObject({cName: sFile});var myDataObject = myDoc.getDataObject(sFile);var sFileName = myDataObject.path;attachments.attList.addItem(sFileName,sFile);The code works fine and attaches files to the form perfectly. ...

Views

987

Likes

0

Replies

2
Re: Non-Responsive Radio Buttons - Adobe LiveCycle 29-10-2010
Tried approaching the problem with check boxes, instead of radio butons, with the same result...Should something go in the parentheses of the line that's not working?: var oState1 = getSigField1.signatureValidate();

Views

137

Likes

0

Replies

0
Re: Non-Responsive Radio Buttons - Adobe LiveCycle 28-10-2010
I've been messing arround with the various lines of code and it seems to be acting up when I introduce the following line into the code:var oState1 = getSigField1.signatureValidate();I am not sure what it is about this line but it is preventing of the 75 > x >= 40 statement to execute. Any suggesstions?

Views

131

Likes

0

Replies

0
Non-Responsive Radio Buttons - Adobe LiveCycle 28-10-2010
I have Radio Button group in a form. The values are 'QUOTE' (value 1) or 'NO QUOTE' (value 2). The button that is filled is dependent on a number of other fields in the form. The radio buttons initially did work, but after adding the signature verification code, only the 'NO QUOTE' field stays selected now. Any ideas as to what causing this issue in my code?//(Under the Calculate Event)if (Row14.totalScore.rawValue >= 75) { decisionMatrix.approvalFrm.presence = "hidden"; this.rawValue = 1; }else...

Views

492

Likes

0

Replies

2
Scan table's columns for empty cells - Adobe LiveCycle 07-10-2010
I have prepared a form that will do the following (please bear with me for the description):The form opens with a 10-row table. The user must enter ratings (from 0 to 10) in one of the table's columns. Once the user enters all ten ratings, he or she must then click a button to enable the rest of the form (which is hidden). What I am trying to do is, after the button is clicked, scan the table to make sure the entire column has been filled in with a number. If the column has been completed then a...

Views

413

Likes

0

Replies

1
Re: Make buttons disappear after Signature - Adobe LiveCycle 26-08-2010
It worked. Thank you...though I don't understand why it wouldn't work Post-Sign. Oh well, I've just decided to do away with that code and place a 'Finalize Form' button to remove all the buttons on the form, instead. That way I don't have to worry about version compatibility issues either or have to think of a way to bring the buttons back if they cancel in the middle of the signing process.Thank you very much for your help.

Views

198

Likes

0

Replies

0
Make buttons disappear after Signature - Adobe LiveCycle 24-08-2010
I am trying to get two buttons to disappear after a form is signed. I am using the following to try to accomplish this by using the following Javascript code under the 'postSign' event:addRemove.addRow.presence="hidden";addRemove.removeRow.presence="hidden";*addRemove is the subform; addRow is button No. 1; removeRow is button No. 2The LiveCycle application immediately prompts a message that the Signature Text object contains 'a feature not supported by the target version.' and does not work whe...

Views

943

Likes

0

Replies

3
Re: Header Repeats when table runs onto 2nd page - Adobe LiveCycle 21-07-2010
That seems to have fixed it.  Thank you very much.

Views

175

Likes

0

Replies

0
Header Repeats when table runs onto 2nd page - Adobe LiveCycle 20-07-2010
I have a form with a dynamic table in which the user is allowed to add and remove rows to it as needed. The table also has a column on the end of it that will become visible/hidden on the click of a button. It also performs basic arithmatic (addition & multiplication) needed to calculate prices for orders. The problem occurs when the table becomes too large to fit on one page; it flows onto a second page. When the file is saved, closed, then re-opened the table will appear with two repeated head...

Views

707

Likes

0

Replies

2