Ver Mensaje Individual
  #3 (permalink)  
Antiguo 06/11/2009, 10:17
quebien
 
Fecha de Ingreso: febrero-2007
Mensajes: 309
Antigüedad: 17 años, 8 meses
Puntos: 16
Respuesta: Ocultar y mostrar fila de una tabla anda mal en Firefox

Excelente David!!!!! anda perfectamente!

Hice una funcion para dicho proposito para que sea mas facil. La dejo acá por si a alguien en algun momento le sirve:

Código:
function ocultarFila(objTR, mostrar){
	if(mostrar){
		try {
			objTR.style.display = 'table-row';
		} catch (err) {
			objTR.style.display = 'block';
		}
	}else{
		objTR.style.display = 'none';
	}
}
__________________
Responder encuestas