View Single Post
Old 09-12-2005, 02:20 PM   #1 (permalink)
SeetaramaRaju
Registered User
 
Join Date: Aug 2005
Posts: 8
SeetaramaRaju is on a distinguished road
moving items from a list box to another

I've Requirement, where i need to select an item from a list box
and clck on a add button. this should add this item to another list box.

can anybody help me with the syntax

i wrote a javascript like this

function addGroupsRoles(){
var group = document.forms[0].Groups.value;
var role = document.forms[0].Roles.value;
document.forms[0].Groups_Roles.value = new Option(group,role);

alert(group);
alert(role);

}

Its not working. can somebody help me with this please
SeetaramaRaju is offline   Reply With Quote