Ver Mensaje Individual
  #1 (permalink)  
Antiguo 22/07/2002, 08:03
sky_xavi
 
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