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...