Ver Mensaje Individual
  #2 (permalink)  
Antiguo 24/08/2009, 04:33
3dweb
 
Fecha de Ingreso: abril-2009
Mensajes: 24
Antigüedad: 15 años, 1 mes
Puntos: 1
Respuesta: Spry Validation "mensaje final"

probe dentro del SpryValidationCheckbox.js agregando las alertas antes de retornar pero no funciona
Código:
if (!Spry.Widget.Form.onSubmit) {
	Spry.Widget.Form.onSubmit = function(e, form)
	{
		if (Spry.Widget.Form.validate(form) == false) {
			alert("test");
			return false;
		}
		alert("test");
		return true;
	};
};