Ver Mensaje Individual
  #3 (permalink)  
Antiguo 17/01/2011, 13:29
Avatar de masterpuppet
masterpuppet
Software Craftsman
 
Fecha de Ingreso: enero-2008
Ubicación: Montevideo, Uruguay
Mensajes: 3.550
Antigüedad: 16 años, 4 meses
Puntos: 845
Respuesta: Problema con funcion form

Que tal kaninox, deberias agregar dos callbacks(onException, onFailure), para comprobar posibles errores, algo así:

Código Javascript:
Ver original
  1. new Ajax.Updater({
  2.    ...
  3.    onFailure: function(){ alert('Failure: Something went wrong...') },
  4.    onException: function(){ alert('Exception: Something went wrong...') }
  5. });

Saludos.