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

Goldie6175_
Goldie6175_
Offline

Badges

Badges
6

Accepted Solutions

Accepted Solutions
0

Likes Received

Likes Received
0

Posts & Comments

Posts & Comments
16

Discussions

Discussions
0

Questions

Questions
8

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by Goldie6175_
Customize the badges you want to showcase on your profile
Re: Possible to display percentage pattern as num{zz9.9%} - Adobe LiveCycle 23-10-2013
Thanks so much!  That did the trick!

Views

175

Likes

0

Replies

0
Possible to display percentage pattern as num{zz9.9%} - Adobe LiveCycle 23-10-2013
Is it possible to display a percentage as 2.5%? I tried to adjust the pattern, but it doesn't seem to work.Thanks, Anne

Views

700

Likes

0

Replies

2
Printing only one part of a form (text box or subform) - Adobe LiveCycle 22-08-2013
I have a form with a button to show the instructions on how to fill out the form. I would like for them to be able to print the instructions if they want, and then close the instructions to continue filling out the form if they choose. Is there a way to print only a text box, or even a subform?Thanks, Anne

Views

479

Likes

0

Replies

1
Re: Do not allow spacing in a text field - Adobe LiveCycle 21-08-2013
This worked perfectly.  Thank you so much! 

Views

218

Likes

0

Replies

0
Re: Javascript for populating text field based on dropdown list - Adobe LiveCycle 20-08-2013
Well, I figured it out and this works, so I will post it here in case anyone else has the same problem. if (Species.rawValue=="Human" & Gender.rawValue=="Female" & RefType.rawValue=="Standard"){ SampleRef.rawValue="HumanNCB137_XX"; } if (Species.rawValue=="Human" & Gender.rawValue=="Male" & RefType.rawValue=="Standard"){ SampleRef.rawValue="HumanNCB137_XY"; }if (Species.rawValue=="Human" & Gender.rawValue=="Unknown" & RefType.rawValue=="Standard"){ SampleRef.rawValue="Human"; }if (Species.rawVal...

Views

497

Likes

0

Replies

0
Re: Do not allow spacing in a text field - Adobe LiveCycle 20-08-2013
thanks. I put the script in "validate" and it won't allow me to enter anything. Should I be putting it somewhere else?SampleRef.rawValue = this.rawValue.replace(/\s\s+/gm,"");

Views

219

Likes

0

Replies

0
Do not allow spacing in a text field - Adobe LiveCycle 20-08-2013
I have a form where the data will be imported into a database, so we don't want the users to be able to allow spacing when they enter the data. Is there a way to do this?Thanks, Anne

Views

927

Likes

0

Replies

5
Re: Javascript for populating text field based on dropdown list - Adobe LiveCycle 20-08-2013
I need to have a field auto-populate from three previous selections. Would this work for that? I am going to try and write it out below. I am sure the code will be wrong, but you get the idea (I hope!)if Species.rawValue=="Human" AND Gender.rawValue=="Female" AND RefType.rawValue=="Standard"){ SampleRef.rawValue="Human"; }Thanks for your help. Anne

Views

400

Likes

0

Replies

0
Show/hide subforms with Radio Buttons - Adobe LiveCycle 27-06-2013
I am trying to show a subform when a radio button is clicked. Here is the code I am using:if (this.rawValue = 1){DEXA.presence = "visible";} else {DEXA.presence = "hidden";}if (this.rawValue = 2){Fluoroscopy.presence = "visible";} else {Fluoroscopy.presence = "hidden";}if (this.rawValue = 3){Other.presence = "visible";} else {Other.presence = "hidden";}I am having a couple of issues. One is that the radio button isn't showing it's active, and the second is that although the first subform (for DE...

Views

808

Likes

0

Replies

2
Attaching values to check boxes and summation - Adobe LiveCycle 04-02-2013
I have a form with 35 check boxes. I want to be able to sum the ones selected at the bottom of the page. I have given them names Check_box(0), Check_box(1), etc, changed the value to 1, and used sum(Check_Box[*]), but it isn't working.Any ideas?Thanks, Anne

Views

434

Likes

0

Replies

1