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

Legro22
Legro22
Offline

Badges

Badges
1

Accepted Solutions

Accepted Solutions
0

Likes Received

Likes Received
0

Posts

Posts
1

Discussions

Discussions
0

Questions

Questions
1

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by Legro22
Customize the badges you want to showcase on your profile
Re: Livecycle populate text field with multiple records from list box - Adobe LiveCycle 16-02-2012
Hi LegroI don't know if I understand you correctly, but you can do something like this:----------------- java script begin ---------------------------------//Reset text fieldTextField.rawValue = "";//loop through items in listboxfor(i = 0; i < ListBox.length; i++){ //if item selected if(ListBox.getItemState(i)) { //check if Text field value if null if (TextField.isNull) { TextField.rawValue = ListBox.getDisplayItem(i); } else { TextField.rawValue = TextField.rawValue + " " + ListBox.getDisplayIt...

Views

459

Likes

0

Replies

0