Re: T5: Event Handler Method Convention Names

2007-09-03 Thread Nick Westgate
Yeah, I think it's only mentioned in the component docs for Submit. http://tapestry.apache.org/tapestry5/tapestry-core/component-parameters.html Cheers, Nick. Joshua Jackson wrote: Thanks Nick It works now. I was confused since I could not find this in the documentation. Cheers, :) On 9/4/0

Re: T5: Event Handler Method Convention Names

2007-09-03 Thread Joshua Jackson
Thanks Nick It works now. I was confused since I could not find this in the documentation. Cheers, :) On 9/4/07, Nick Westgate <[EMAIL PROTECTED]> wrote: > The Submit component's event notification is "Selected". > So you can use: > > void onSelected() // or onSelectedFromFormName -- It's not

Re: T5: Event Handler Method Convention Names

2007-09-03 Thread Nick Westgate
The Submit component's event notification is "Selected". So you can use: void onSelected() // or onSelectedFromFormName Cheers, Nick. Joshua Jackson wrote: Dear all, I've tried what is written from here: http://tapestry.apache.org/tapestry5/tapestry-core/guide/event.html regarding method con

T5: Event Handler Method Convention Names

2007-09-03 Thread Joshua Jackson
Dear all, I've tried what is written from here: http://tapestry.apache.org/tapestry5/tapestry-core/guide/event.html regarding method convention names event handler. But it seems that it only worked for ActionLink component but not Submit. Is it true? Do we have to use OnEvent annotation for Subm