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

Ram_K
Ram_K
Offline

Badges

Badges
6

Accepted Solutions

Accepted Solutions
0

Likes Received

Likes Received
0

Posts & Comments

Posts & Comments
9

Discussions

Discussions
0

Questions

Questions
5

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by Ram_K
Customize the badges you want to showcase on your profile
Error opening the form in Reader 7 - Adobe LiveCycle 19-05-2009
I have designed a form in LiveCycle designer 8. The form has a regular Submit button which posts data a URL (a java servlet) using HTTP URL encoded.The form opens and works as expected in versions 8 and 9. However, when I open the form in 7, I get the following error:Invalid enumerated value: urlencoded.The fault occurred on line 105111.I changed the button to HTTP Submit Button, and it started working fine in Reader 7. Just wondering if there is anything else I need to take care of here.

Views

755

Likes

0

Replies

0
Re: Disable form fields - Adobe LiveCycle 12-05-2009
Thanks Yan. Works GREAT!

Views

169

Likes

0

Replies

0
Re: Disable form fields - Adobe LiveCycle 12-05-2009
Hello Yan,Thanks for finding that. I changed the operator to != but still doesnt work. Both the buttons are still disabled.

Views

168

Likes

0

Replies

0
Re: Disable form fields - Adobe LiveCycle 12-05-2009
Thanks YanIt works great! However, I have multiple buttons on my form that I would like keep active..I have written my code below but doesnt work.for (var nPageCount = 0; nPageCount < xfa.host.numPages; nPageCount++) { var oFields = xfa.layout.pageContent(nPageCount, "field"); var nNodesLength = oFields.length; for (var nNodeCount = 0; nNodeCount < nNodesLength; nNodeCount++) { if (oFields.item(nNodeCount).name !=="Button1"|oFields.item(nNodeCount).name !=="Button2") { oFields.item(nNodeCount).a...

Views

175

Likes

0

Replies

0
Disable form fields - Adobe LiveCycle 11-05-2009
I would like to disable all the form fields (text and dropdown lists) except the submit button, reset and print button when a user enters their signature in the signature text field on the form. I have the following code currently but its locking the buttons as well.for (var nPageCount = 0; nPageCount < xfa.host.numPages; nPageCount++) {var oFields = xfa.layout.pageContent(nPageCount, "field");var nNodesLength = oFields.length;for (var nNodeCount = 0; nNodeCount < nNodesLength; nNodeCount++) {oF...

Views

2.1K

Likes

0

Replies

6
Making data communication secure - Adobe LiveCycle 05-05-2009
I have designed a form in LiveCycle designer that has a submit button. Clicking the submit will invoke a java servlet that receives the form data. The java application (ear file) is deployed onto an application server that is not secure. we do not have an secure app server. Is there anyway within livecycle or adobe to encrpyt the data transmission. Appreciate your quick thoughts.

Views

767

Likes

0

Replies

1
Securing form attachments - Adobe LiveCycle 16-04-2009
I am using the submit button to email that allows users to email the PDF form by saving to their desktops and using internet mail such as GMail or any desktop based clients. My form has a permissions password with 128 bit AES but there is NO document open password.Is my form secure when the form is transported by email? If not, how can the date in the form be made secure?Appreciate your thoughts.

Views

481

Likes

0

Replies

0
Re: Date() format in Livecycle designer - Adobe LiveCycle 16-04-2009
Iam converting it to String and doing a Substring..Just wondering if there is a better way.

Views

178

Likes

0

Replies

0
Date() format in Livecycle designer - Adobe LiveCycle 15-04-2009
Hello AllI have a requirement where in I should display the date/time in a seperate field when the user starts typing in a text field.I have the following code in the change event of text field in which user types:datetimefield.rawValue=Date();datetimefield is a Date/Time field with value type 'calculated- Read Only' and display pattern of date{yyyy-mm-dd} time{hh:mm:ss}Under the binding tab, the data form is set to 'Date and Time'Now, when start typing in the text field, the date and time is di...

Views

6.2K

Likes

0

Replies

2