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

hattg
hattg
Offline

Badges

Badges
7

Accepted Solutions

Accepted Solutions
0

Likes Received

Likes Received
0

Posts & Comments

Posts & Comments
10

Discussions

Discussions
0

Questions

Questions
4

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by hattg
Customize the badges you want to showcase on your profile
Making field visible only works in initial row, not added rows - Adobe LiveCycle 18-06-2010
I have a dynamic form to which I can add rows. It is 3 columns, with the first being a DDL which populates the second column DDL. The 3rd column is a hidden field that shows once a choice in the second DDL has been made. It works fine in the initial row, but it will not become visible in any added rows.This is my code for the second DDL:if(this.rawValue != 1){form1.Page1.OrderSection.OrderItems.Condition.presence= "visible";}else{form1.Page1.OrderSection.OrderItems.Condition.presence= "hidden";}...

Views

578

Likes

0

Replies

1
Need check box to become hidden when quantities are entered - Adobe LiveCycle 24-06-2009
I have a form where I need my check boxes to become hidden whenever a quantity is entered in a particular subform section. I don't want the users to be able to close the section they are in if there is a quantity in any of the fields in that section, since it leaves the information still. I have come close, but can't quite get it. It seems like it would be simple. I have attached my file.My thought is to have it be on the SubQty field in each subform section. That if any of the qty fields in tha...

Views

842

Likes

0

Replies

1
Re: Validating multiple patterns - Adobe LiveCycle 16-06-2009
That did it, thanks. Makes sense now that I see it.

Views

519

Likes

0

Replies

0
Validating multiple patterns - Adobe LiveCycle 15-06-2009
I am trying to have LC validate three different patterns in a text field. One would be one letter followed by 6 numbers, two is 6 numbers, and three is 9 numbers. This is what I have so far. It's close, but not quite doing what I need. It is correctly validating one, but with the two and three it is allowing anything between 6 and 9 numbers, not just 6 or 9 numbers. Suggestions?varr = new RegExp(); r.compile("^[a-zA-Z]+[0-9]{6}|[0-9]{6}|[0-9]{9}$","i"); var result = r.test(this.rawValue); if(res...

Views

1.5K

Likes

0

Replies

2
if/then worked in Acroform, but not in LC - Adobe LiveCycle 09-06-2009
I have a javascript that was working in an Acrobat form, but when I bring it over to LC 8.05 it doesn't work any longer. Or should be be in FormCalc here? I need a cost field to calculate and return a value based on the quantity entered. If quantity (ADS3) is 9 or less it multiplies by by the number in ADS1, if more than 9 multiply by ADS2. Any help would be greatly appreciated.Thanks// Cost if 1-9varv1 = this.getField("ADS1");// Cost if 10+var v2 = this.getField("ADS2");// Quantityvar v3 = this...

Views

747

Likes

0

Replies

1
Re: Tables in Live Cycle - issues with borders - Adobe LiveCycle 04-06-2009
Doesn't work for me. I can have every Subform, Table, Row and Cell set to None for borders, and I will still get borders. Or chage it at cell level, no good. It very much seems with this program, or at least this version, that things are very much in what order you apply them. I have had the problem, rebuilt one piece, and then they work. I have had similar problems with some other things as well. But thanks.

Views

840

Likes

0

Replies

0
Re: Tables in Live Cycle - issues with borders - Adobe LiveCycle 04-06-2009
I am having this same issue. I have version 8.05.2073.1.374024.Is there actually a fix for this problem? It was never covered other than to say spend more money for an upgrade to a different version. And it didn't say if that fixed the problem.

Views

799

Likes

0

Replies

0
Re: Auto assign a requisition / order number - Adobe LiveCycle 29-04-2009
I found this thread on a search, as I have the same issue. Piggybacking on this question, this does work assigning a unique number, however for me, that PDF is e-mailed to another group as well as saved by the user. But now, when either of those people open that PDF, the number continues to incriment. Is there a way to make it not change once the PDF has been saved/e-mailed? My thought would be to make the entire form become read only, but I am not sure that would even fix it?

Views

944

Likes

0

Replies

3
Re: Naming PDF and XML files on submit - Adobe LiveCycle 28-04-2009
That was it, I was running it from the preview when I was getting that. Thank you Paul.

Views

414

Likes

0

Replies

0
Naming PDF and XML files on submit - Adobe LiveCycle 28-04-2009
I have my form set up to do a Save As to allow the user to save the file locally, and then attach an XML file to a Lotus Notes e-mail. It all works fine, except that both file names have generated names such as _7g18f5q3df6dbt11g.pdf. Is there a way to give these both a "correct" file name. Such as the name of the form?Thanks

Views

906

Likes

0

Replies

2