Listboxes and retrieving results into session variables
I have a problem with the list boxes! I have followed the sun java tutorial and everything works fine like it is supposed to do according to the example.
I can add and remove text into and out of the listbox and I can select individual or multiple items and pass these values into a text field using binding abd sessionBean1.
What I would like to do, is get all values from the list box and store them into session variables (setValue("#{sessionScope.goPhrase}", ""); so that I can use them in a later stage in my project.
I can not get this done for some strange reason. Does any one have any reference pages other than the listbox tutorial that maybe of assistance?
Right now I have to instruct the users to highlight there choices and then click the select button that passes the values into a text area and this is not what I want to do.
This is my psuedo code:
ADD Phase
user enters text into text field and clicks Add
goes through code that enters the info into listbox
Code has to get value from text field and enter it into listbox as option
Remove Phase
user selects single or multiple entries to remove selection clicks remove
Code gets value of what was selected and removes its
Select phase
user clicks select and either selection of list box or all with no selection are chosen.
I thank you for any assistance as this is stumping me.

