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

StevenDayton
StevenDayton
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 StevenDayton
Customize the badges you want to showcase on your profile
Re: "Copy Multiple" results are out of order - Adobe LiveCycle 29-05-2013
I noticed this behavior a long time ago in earlier versions of LCD and it still persists in ES3. I have always just rearranged the order in the heirarchy panel.

Views

117

Likes

0

Replies

0
Re: checkbox while tabbing - Adobe LiveCycle 28-05-2013
Here are a couple of methods to try out.Method 1: JavaScriptAdd the following script to the change event of each checkbox.if(this.rawValue == 1){NameOfCheckBoxToUncheck.rawValue = 0;}Method 21. Make sure both checkboxes have the same name2. Set the Data Binding field on the Binding tab of the Object properties to Use global data.3. Set the On Value to be unique for each of the checkboxes ie. On Value = Yes for the yes checkbox and On Value = No for the no checkbox.The nice thing about setting up...

Views

120

Likes

0

Replies

0
Re: Dropdown display changes based on user selection in previous dropdown list - Adobe LiveCycle 14-05-2013
I will take your advice. I think at the time I originaly created these was to learn some more scripting skills. I am curious why one works while the other doesn't.Thanks for the help.

Views

273

Likes

0

Replies

0
Re: Dropdown display changes based on user selection in previous dropdown list - Adobe LiveCycle 14-05-2013
This is helping me out. The only thing I am having trouble with is running the script from a function set up as a variable. I have a variable called "Members" set up with the following function:function TeamMembers(){ TimeSheetSF.EmployeeInfoSF.TeamMemDrop.rawValue = ""; TimeSheetSF.EmployeeInfoSF.TeamMemDrop.clearItems(); var myTeam = this.boundItem(xfa.event.newText); switch (myTeam) { case "Team 0": TimeSheetSF.EmployeeInfoSF.TeamsDrop.addItem("Cheryl"); TimeSheetSF.EmployeeInfoSF.TeamsDrop.a...

Views

274

Likes

0

Replies

0
Building a drop-down list dependant on another droplist - Adobe LiveCycle 14-05-2013
I am working on a form that has a drop-down list that is supposed to be dependant on choices made in another drop-down list. The two fields are called TeamNamesDrop and TeamsDrop. Both of the lists are set up in variables. The first variable is set up create the list of seven team names and I am running the script from an initialize event. It works fine. When I click the drop-down arrow I get the list of seven team names to choose from. The second variable I have uses a switch statement so if th...

Views

541

Likes

0

Replies

1