Ver Mensaje Individual
  #2 (permalink)  
Antiguo 29/04/2008, 04:11
quimfv
Colaborador
 
Fecha de Ingreso: marzo-2008
Ubicación: Sabadell
Mensajes: 4.897
Antigüedad: 16 años, 2 meses
Puntos: 574
Re: Problema con formulario

Código:
if (registros[registro][14]=="S"){
    txt += "<td width='15%'>"
               +"     Pendiente:"
               +"</td>"
               +"<td width='*'>"
               +"    <input name=numero id=numero type=checkbox value='' checked >"
               +"</td>";
}else{
    txt += "<td width='15%'>"
               +"     Pendiente:"
               +"</td>"
               +"<td width='*'>"
               +"    <input name=numero id=numero type=checkbox value='' >"
               +"</td>";
} 
Quim