Ver Mensaje Individual
  #2 (permalink)  
Antiguo 13/10/2009, 16:24
Vhan
 
Fecha de Ingreso: julio-2009
Mensajes: 81
Antigüedad: 15 años, 7 meses
Puntos: 6
Respuesta: deshabilitar valor checked

hay un atributo del chackbox de nombre "disabled"
prueba usar algo como
myCheckBox.removeAttribute("disabled");
or
myCheckBox.addAttribute("disabled");

el html del disabled es simplemente:
<input type="checkbox" value="Experiencia1" name="to_experiencia[]" disabled>