tengo problema con un flag puesto que cuando lo "checkeo" despues no lo puedo "deschekear"
espero que me ayuden por ke no entiendo ke podria ser...demas ke debe ser algo tonto ejej
muchas gracias
Código:
<html> <body> <script> function tipo_campo(valor){ if(valor == 1){ if (document.form3.flg_no_amp.checked){ document.form3.flg_no_amp.value="1"; } else{ document.form3.flg_no_amp.value="0"; flg_no_amp.checked="false"; } } if(valor == 2){ if (document.form3.flg_no_rul_sup.checked){ document.form3.flg_no_rul_sup.value="1"; } else{ document.form3.flg_no_rul_sup.value="0"; document.form3.flg_no_rul_sup.checked="false"; } } if(valor == 3){ if (document.form3.flg_no_rul_inf.checked){ document.form3.flg_no_rul_inf.value="1"; } else{ document.form3.flg_no_rul_inf.value="0"; document.form3.flg_no_rul_inf.checked="false"; } } if(valor == 4){ if (document.form3.flg_asig_total_escasez.checked){ document.form3.flg_asig_total_escasez.value="1"; } else{ document.form3.flg_asig_total_escasez.value="0"; document.form3.flg_asig_total_escasez.checked="false"; } } } </script> <form name="form3" action="add_clase_pedido.htm" method="post" onsubmit="return validateForm(this,false,false,false,false,15);"> <table width="660" border="0" cellspacing="2" cellpadding="2"> <input type="hidden" name="cod_cd" value="$!cod_cd"> <tr> <td width="200">Código</td> <td><input name="cod_clase" type="text" maxlength="10" class="small" value="" onkeypress="return upperCase(event)" id="cod_clase" alt="blank"></td> <td><label for="cod_clase"> </label> </tr> <tr> <td>Nombre</td> <td><input name="nombre_clase" type="text" maxlength="50" class="big" value="" onkeypress="return upperCase(event)" id="nombre_clase" alt="blank"></td> <td><label for="nombre_clase"> </label></td> </tr> <tr> <td>Jerarquía Clase de Pedido </td> <td><input name="jerarquia" type="text" maxlength="10" class="small" value="" onkeypress="return solonumeros(event)" id="jerarquia" alt="number|0|1|9999999999"></td> <td><label for="jerarquia"> </label> </tr> <tr> <td>No Amplificar </td> <td><input type="checkbox" name="flg_no_amp" value="1" onclick="tipo_campo(1)"></td> </tr> <tr> <td>No redondea UL hacia arriba </td> <td><input type="checkbox" name="flg_no_rul_sup" value="1" onclick="tipo_campo(2)"></td> </tr> <tr> <td>No redondea UL hacia abajo </td> <td><input type="checkbox" name="flg_no_rul_inf" value="1" onclick="tipo_campo(3)"></td> </tr> <tr> <td>No asignación total de escasez </td> <td><input type="checkbox" name="flg_asig_total_escasez" value="1" onclick="tipo_campo(4)"></td> </tr> <tr> <td> </td> <td><input name="Submit" type="submit" class="cmd" value="Agregar"></td> </tr> </table></form> </body> </html>