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

kiefferg
kiefferg
Offline

Badges

Badges
3

Accepted Solutions

Accepted Solutions
0

Likes Received

Likes Received
0

Posts

Posts
5

Discussions

Discussions
0

Questions

Questions
5

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by kiefferg
Customize the badges you want to showcase on your profile
Re: Validate fields before signature - Adobe LiveCycle 11-08-2015
I tried to use this to solve a related issues where multiple fields must have a minimum value.What should I do to resolve this?//if all fields have their target value or greater in them make signature field updatable//otherwise set it to readOnlyIf (ASTM1.rawValue >= 4 & ASTM2.rawValue >= 5 & ASTM3.rawValue >= 6 & ASTM4.rawValue >= 3 & ASTM5.rawValue >= 2 & ASTM6.rawValue >= 8 & ASTM9.rawValue >= 1 & ASTM10.rawValue >= 3 & ASTM11.rawValue >= 1 & ASTM12.rawValue >= 0) { this.access = "open";} els...

Views

1.6K

Likes

0

Replies

0
Re: subform visibility - Adobe LiveCycle 07-12-2009
I like using the Change event so if you arrow up or down through the list you get immediate feedback. You can do this using boundItem().For a series of changes like you have I prefer using a switch() statement too - makes things easier to read. I'm using the "specified value" in the sample below, but you can put the text from the dropdown choices in there too.var newValue = this.boundItem(xfa.event.newText);switch (newValue){ case "3": OtherLegislation.presence="hidden"; InterestPeriod.presence=...

Views

99

Likes

0

Replies

0
Re: Drop down issue - Adobe LiveCycle 12-10-2009
Paul,your example also helped me with a similar issue. Thank you for posting your response.GDK

Views

139

Likes

0

Replies

0