How have you defined the ActionLink? It sounds like you might have set
the context parameter for it incorrectly. Can you paste your link
definition here?
cheers,
Joost
paha wrote:
Hi,
i am very new to tapestry and must be missing some important concept, need
you help. i have a page (list of products), and one integer parameter
(category), passed to it via onActivate.
void onActivate(Integer param) {
this.param = param
}
Object onPassivate() {
return param;
}
This page has also actionlink with other integer parameter (delete product
with id)
but the action handler is never fired unless the type of the parameter is
EventContext (which holds no info).
Object onActionFromLink(Integer otherParam) {
//never fired
}
Object onActionFromLink(EventContext param) {
//fired but has no data
}
what i want to achieve - delete selected product on the same page that shows
product list.
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org