Re: Form with 2 sets of submit buttons doesn't work

2006-05-29 Thread Ryan Holmes
action="listener:doHelp" will work. It also has the benefit of not invoking an ognl call. As a general rule, use binding prefixes whenever possible to avoid ognl. You might also want to check out the Tapestry-Prop library (http://howardlewisship.com/tapestry-javaforge/tapestry-prop/) to get n

Re: Form with 2 sets of submit buttons doesn't work

2006-05-29 Thread Matt Raible
Jesse Kuhnert wrote: Don't use the listener= parameter, use action="" . Listeners will always strive to find the most "direct" path to invoking your method, which in the case of forms means as soon as the template parser sees it in the component tree. Thanks Jesse, that did the trick. I ch

Re: Form with 2 sets of submit buttons doesn't work

2006-05-29 Thread Jesse Kuhnert
Don't use the listener= parameter, use action="" . Listeners will always strive to find the most "direct" path to invoking your method, which in the case of forms means as soon as the template parser sees it in the component tree. Action listeners on the other hand will safely be invoked only aft