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

KColandrea
KColandrea
Offline

Badges

Badges
2

Accepted Solutions

Accepted Solutions
0

Likes Received

Likes Received
0

Posts

Posts
3

Discussions

Discussions
0

Questions

Questions
3

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by KColandrea
Customize the badges you want to showcase on your profile
Re: Tabbing Order - Adobe LiveCycle 02-09-2011
Just wondering if there's a way to remove or skip an item in the tabbing order. I have Delete buttons for several subforms and I would like to have users be able to tab over the buttons without the chance of stopping on a delete button, hit enter and clear their work. If I make it "protected" it doesn't tab to the item, but then you can't click on it either... I've also tried setting the focus to the next field upon "enter" but when you reverse tab you get stuck.Any ideas?? Why isn't this functi...

Views

359

Likes

0

Replies

0
Re: Make calculation based on drop down choice - Adobe LiveCycle 07-06-2011
Thanks Niall!Yes. It is Java Script.Had to make a few corrections, but it worked...var fields = xfa.resolveNodes("Page7.BenefitDetails[*].Amount");var total = 0;for (var i=0; i <= fields.length-1; i++){var DescriptionChoice = xfa.resolveNode("Page7.BenefitDetails[" + i + "].Description").rawValue;//xfa.host.messageBox("the DescriptionChoice is: " + DescriptionChoice);if (DescriptionChoice == 1)total = total + fields.item(i).rawValue;}this.rawValue = total;I will check out your info on scripting ...

Views

145

Likes

0

Replies

0