Ver Mensaje Individual
  #2 (permalink)  
Antiguo 18/10/2003, 01:28
Avatar de TurKa
TurKa
 
Fecha de Ingreso: enero-2003
Ubicación: Gerli, Avellaneda
Mensajes: 543
Antigüedad: 22 años
Puntos: 4
Fíjate si te sirve este ejemplo:
Cita:
<script language="javascript">
function pasarOpciones(form) {
var combo1 = form.combo1.options;
var combo2 = form.combo2.options;
nuevaOpcion = new Option(combo1[combo1.selectedIndex].text,combo1[combo1.selectedIndex].value,"","");
a = combo2.length;

if (a==0) { i=0; } else { i=a; }
combo2[i] = nuevaOpcion;
}

function eliminarOpciones(form) {
form.combo2.options[form.combo2.options.selectedIndex] = null;
}
</script>
<form name="form">

<select name="combo1" multiple size=3>
<option value="1">Opcion 1</option>
<option value="2">Opcion 2</option>
<option value="2">Opcion 3</option>
</select>

<input type="button" value=" > " onClick="pasarOpciones(this.form)">
<input type="button" value=" X " onClick="eliminarOpciones(this.form)">

<select name="combo2" multiple size=3></select>
</form>
__________________
Programación LAMP con Scrum y XP
www.eugeniabahit.com.com.ar