22/07/2002, 08:03
|
| | Fecha de Ingreso: julio-2002
Mensajes: 7
Antigüedad: 22 años, 6 meses Puntos: 0 | |
Campo Checked Hola, estoy intentando hacer que cuando selecciono un objeto checkbox otro checkbox se seleccione tambien. Implemento esto:
function ValidarPagaMatricula(PagaMatricula){
if (PagaMatricula.checked)
forms['InsertarAlumnos'].Matricula.value = true;
else
forms['InsertarAlumnos'].Matricula.value = false;
}
Pero no consigo que Matricula se quede seleccionado.
Gracias |