| |||
Radio Button Hola amigos.....tengo una pregunta, quisiera que dado una cantidad de opciones de radio button, yo pueda en determinada opción activar un campo de texto en lo que el usuario hga click sobre ella........si pueden ayudarme lo agradeceria!!!!!!
__________________ Margot Palacios |
| |||
Hola Jorel, entendí más o menos lo que me escribiste así que cuando lo intenté escribir me dijo que habia un error. Te explico mejor a ver.......tengo lo siguiente: <% Set Rs1=Server.CreateObject("ADODB.RecordSet") iSQL= "SELECT * FROM ENC_PREGUNTAS WHERE PRE_COD_ENCUESTA=" & id & "ORDER BY PRE_COD_PREGUNTA" Rs1.Open iSQL,db,3,3 Do While Not Rs1.Eof %> <tr bgcolor="#FFFFFF"> <td width="355" height="41"><font size="2" face="Verdana, Arial, Helvetica, sans-serif"> <%=Rs1("PRE_DESCRIPCION")%></font></td> <td width="377" align="right"><table width="361" border="0" cellspacing="0" cellpadding="0"> <tr align="center"> <td width="90"> <input type="radio" name="rb<%=Rs1("PRE_COD_PREGUNTA")%>" value="res1" checked></td> <td width="90"> <input type="radio" name="rb<%=Rs1("PRE_COD_PREGUNTA")%>" value="res2"></td> <td width="90"> <input type="radio" name="rb<%=Rs1("PRE_COD_PREGUNTA")%>" value="res3"></td> <td width="90"> <input type="radio" name="rb<%=Rs1("PRE_COD_PREGUNTA")%>" value="res4"></td> <td width="90"> <input type="radio" name="rb<%=Rs1("PRE_COD_PREGUNTA")%>" value="res5" onclick="habilita()"></td> </tr> </table> <td width="154"><input name="Deficiente" type="text" id="res5" size="20" maxlength="50" disabled></td> </tr> <% Rs1.MoveNext Loop %> en vista de que tengo 5 opciones de radio button, yo quiero que cuando el usuario le haga click a la 5, aparezca un cuadro de texto a un ladito para que él escriba una explicación......
__________________ Margot Palacios |
| ||||
Cita: ¿Queres que un Text que originalmente no se ve, te aparezca cuando el usaurio selecciones TODOS los radios?Mensaje Original por margotpalacios ... en vista de que tengo 5 opciones de radio button, yo quiero que cuando el usuario le haga click a la 5, aparezca un cuadro de texto a un ladito para que él escriba una explicación...... [/B] Dependiendo de la respuesta, se usan radio o checks o enables y capas ocultas, o llamadas a la misma página. Saludos |