Ver Mensaje Individual
  #3 (permalink)  
Antiguo 29/03/2012, 08:48
tesistas
 
Fecha de Ingreso: septiembre-2010
Mensajes: 74
Antigüedad: 13 años, 7 meses
Puntos: 1
Respuesta: deshabilitar fila con radio button

Cita:
Iniciado por JairLizcano Ver Mensaje
Me queda más fácil ayudarte sobre el código, publícalo y con gusto te ayudo.

Buena suerte.
Hola JairLizcano, este es el codigo

Código HTML:
 <table border='1'>
  <tr>
  <td style='width: 300px'>TOTAL SIN INTERES</td>
  <td style='width: 100px; text-align: right' id="sinint"><?php echo "$"; echo $mult?></td>
  <td><input type="radio" name="pretot" checked="true" value="<?php echo $mult?>"></td>
  </tr>
  <tr>
  <td style='width: 300px'>TOTAL CON INTERES (15%)</td>
  <td style='width: 100px; text-align: right' id="conint"><?php echo "$"; echo $multint?></td>
  <td><input type="radio" name="pretot" value="<?php echo $multint?>"></td>
  </tr>
  </table>