It sounds like that for whatever reason the call to
Tapestry.registerForm('yourFOrmName');
didn't properly register your form?Well, that would only work if Tapestry was "extending" the form object, which I don't think it is. (But just in case I've ranted anyways). Shouldn't it be calling "this.form.events.refresh()" instead? It's one of those two :) On 8/30/05, Kevin Menard <[EMAIL PROTECTED]> wrote: > > > On Aug 13, 2005, at 11:12 AM, Howard Lewis Ship wrote: > > > You use JavaScript to control the submission behavior of the form: > > > > Set the client-side onclick handler attribute to one of the following: > > > > javascript:this.form.submit() --- normal submit, with validation > > javascript:this.form.cancel() -- cancels the form > > javascript:this.form.refresh() -- bypasses validation but submits the > > form normally otherwise > > javascript:this.form.refresh() does nothing for me. The Firefox > JavaScript console says it's not a function. I've tried digging up > DOM documentation too, and have turned up nothing on a refresh method > on a form object. > > Being that I don't know a ton about JavaScript, does anyone out there > have any idea what may be wrong? > > Thanks, > Kevin >
