Howard -
Thanks - that's a start. Unfortunately I need(ed) a way to stop the form
submission. I'm executing code that has a callback to tell me it's done.
$('form').observe("form:prepareforsubmit", function(event) {
if(!callbackExecuted){
event.stop(); //this won't stop
In 5.0.11-SNAPSHOT you can observe the "form:prepareforsubmit" event
on the Form object.
By observe, I mean all the Protoype stuff:
$(form).observe("form:prepareforsubmit", function() { ... });
On Tue, Feb 26, 2008 at 10:45 AM, Michael Lake <[EMAIL PROTECTED]> wrote:
>
> I've got some javascrip
I've got some javascript that I want to execute AFTER the client-side
validation has passed but BEFORE the actual form submission.
I've tested out adding my own Tapestry.Validator so that I could simply
have a hidden form element that executes last(being placed before the
tag), but I have