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;
};
};