Ver Mensaje Individual
  #3 (permalink)  
Antiguo 23/10/2010, 23:34
Avatar de hoberwilly
hoberwilly
 
Fecha de Ingreso: julio-2008
Ubicación: Lima - Perú
Mensajes: 769
Antigüedad: 15 años, 10 meses
Puntos: 2
Respuesta: Validacion RadioBoton y Caja de Texto

David gracias.

Efectivamente la validacion se realiza fuera del bucle for, quedando asi:

function aceptar(){
var ii = 0;
for (var i=0;i<document.frm.rate_id_amount.length;i++){
if (document.frm.rate_id_amount[i].checked){
ii = 1;
break;
}
}
alert(ii);
if (ii == 0){
//////intento validar caja de texto vacio
}
}