From my understanding, T5 is much different in that there is an '@OnEvent'
annotation
e.g.
class Page
{
@Component
private Form form;
@InjectPage
NextPage nextPage;
@OnEvent(value="submit")
public Object submit()
{
return nextPage;
}
}
and on your corresponding page:
http://tapestry.apache.org/tapestry4.1/components/form/form.html
in html:
in java:
public IPage doSubmit()
{}
Don Heninger wrote:
I am a noob when it comes to tapestry but I am looking for some basic
instruction on Form handling (not the BeanEditForm) in Tapestry 5.
Can anyone point me in th
I am a noob when it comes to tapestry but I am looking for some basic
instruction on Form handling (not the BeanEditForm) in Tapestry 5.
Can anyone point me in the right direction?
Thanks,
Don