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

Java_Programmer
Java_Programmer
Offline

Badges

Badges
3

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 Java_Programmer
Customize the badges you want to showcase on your profile
Re: Help on ListBox - Adobe LiveCycle 27-04-2010
Hi Srini,I am using adobe forms in context to an SAP technology named Webdynpro. The data for ListBoxes will be loaded from SAP system, which will come to the form as elements to the nodes- ProhibitedPlants and PermittedPlants (These nodes are present in the data View of adobe livecycle designer).That is: The nodes in dataview (ProhibitedPlants and PermittedPlants) will be loaded with values from SAP using java code. Because of the mapping of these nodes with the list boxes, the value will be lo...

Views

380

Likes

0

Replies

0
Re: Help on ListBox - Adobe LiveCycle 26-04-2010
Hi Srini,Your reply was extremely helpful. I had captured the logic from your coding and did a small modification, as the list box is multiselection enabled.Here is my code for adding the selected values from ProhibitedPlants_ListBox to PemittedPlants_ListBox:if(ProhibitedPlants_ListBox.selectedIndex> -1)//IF AT LEAST ONE ITEM IS SELECTED{//xfa.host.messageBox("AT LEAST ONE ENTRY SELECTED");var length1 = ProhibitedPlants_ListBox.items.nodes.length;for(var j=length1-1;j>=0;j--)//ITERATING THROUGH...

Views

378

Likes

0

Replies

0
Help on ListBox - Adobe LiveCycle 23-04-2010
Hi All,I am quite beginner in adobe live cycle designer. I have a requirement where there are two list boxes (Say L1 and L2).Multi selection has been enabled for both the List boxes. There is an add button and a remove button.On clicking Add button, the selected entries should be removed from L1 and to be added to L2.On clicking Remove button, the selected entries should be removed from L2 and to be added to L1.I am using javascript as the scripting language and Adobe Live Cycle Designer 7.1.Can...

Views

4.2K

Likes

0

Replies

6