I ran into another "gotcha" with this approach.
there is a submitHandler: handle that must be commented out or the seaside
callbacks assigned to your submit button will not work.
$(document).ready(function() {
// validate signup form on keyup and submit
var validator = $("#signupform").validate({
.......
submitHandler: function() {
alert("submitted!");
},
.....
});
Once I commented out that section of the example, the Seaside callbacks worked.
Prior to removing it, I had tried replacing the alert("submitted!") with return true; and return false; to no avail.
_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside