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. -- View this message in context: http://old.nabble.com/-T5--onActivate%2C-onPassivate-and-actionlink-tp28409603p28409603.html Sent from the Tapestry - User mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional commands, e-mail: users-h...@tapestry.apache.org