Ver Mensaje Individual
  #2 (permalink)  
Antiguo 04/03/2008, 21:11
Avatar de TurKa
TurKa
 
Fecha de Ingreso: enero-2003
Ubicación: Gerli, Avellaneda
Mensajes: 543
Antigüedad: 22 años
Puntos: 4
Re: Donde consigo un script con el que pueda arrastrar texto hacia un textbox ?

Hola cookie!

¿Sí o sí tiene que ser "arrastrando" el texto hasta el campo?

Por si te sirve de algo, solamente se me ocurrió como hacerlo clickeando en la opción (es decir, haces click sobre la opción y se copia en el campo de texto). Te dejo el código:

Código:
<script language="javascript" type="text/javascript">
function PasarTxt(ID_Text, ID_campo) {
	document.getElementById(ID_campo).value = document.getElementById(ID_Text).text;
}
</script>

<form name="formulario">
<table>
<tr>
<td width=50%><a href="#" id=Opcion1 
	onClick="PasarTxt(this.id, 'Campo1'); return false;">Opción 1</a></td>
<td width=50%><input type=text name=campoTxt id=Campo1></td></tr>
<tr>
<td width=50%><a href="#" id=Opcion2 
	onClick="PasarTxt(this.id, 'Campo1'); return false;">Opción 2</a></td>
<td width=50%>&nbsp;</td></tr>
<tr>
<td width=50%><a href="#" id=Opcion3 
	onClick="PasarTxt(this.id, 'Campo1'); return false;">Opción 3</a></td>
<td width=50%>&nbsp;</td></tr>
<tr>
<td width=50%><a href="#" id=Opcion4 
	onClick="PasarTxt(this.id, 'Campo1'); return false;">Opción 4</a></td>
<td width=50%>&nbsp;</td></tr>
<tr>
<td width=50%><a href="#" id=Opcion5 
	onClick="PasarTxt(this.id, 'Campo1'); return false;">Opción 5</a></td>
<td width=50%>&nbsp;</td></tr>
</table>
</form>
__________________
Programación LAMP con Scrum y XP
www.eugeniabahit.com.com.ar