Re: Beginner needs help with PageActivationContext and page navigation in Tapestry

2011-07-25 Thread George Christman
As Taha indicated, you probable should use PageRenderLinkSource instead of LinkSource. Good luck! -- View this message in context: http://tapestry.1045711.n5.nabble.com/Beginner-needs-help-with-PageActivationContext-and-page-navigation-in-Tapestry-tp4631566p4632134.html Sent from the Tapestry

Re: Beginner needs help with PageActivationContext and page navigation in Tapestry

2011-07-25 Thread Julien Martin
LinkWithContext(Index.class, > contextId); > return link; >} > > -- > View this message in context: > http://tapestry.1045711.n5.nabble.com/Beginner-needs-help-with-PageActivationContext-and-page-navigation-in-Tapestry-tp4631566p4631991.html > Sent from the

Re: Beginner needs help with PageActivationContext and page navigation in Tapestry

2011-07-25 Thread George Christman
context: http://tapestry.1045711.n5.nabble.com/Beginner-needs-help-with-PageActivationContext-and-page-navigation-in-Tapestry-tp4631566p4631991.html Sent from the Tapestry - User mailing list archive at Nabble.com. - To

Re: Beginner needs help with PageActivationContext and page navigation in Tapestry

2011-07-25 Thread Taha Hafeez
; -- >> View this message in context: >> http://tapestry.1045711.n5.nabble.com/Beginner-needs-help-with-PageActivationContext-and-page-navigation-in-Tapestry-tp4631566p4631914.html >> Sent from the Tapestry - User mailing list archive at Nabble.com. >> >> ---

Re: Beginner needs help with PageActivationContext and page navigation in Tapestry

2011-07-25 Thread Julien Martin
e LinkSource _linkSource; > > Class onActionFromModify(String contextId) { > return linkSource.createPageRenderLinkWithContext(YourClass.class, > contextId); > } > > -- > View this message in context: > http://tapestry.1045711.n5.nabble.com/Beginner-needs-help-with-PageA

Re: Beginner needs help with PageActivationContext and page navigation in Tapestry

2011-07-25 Thread George Christman
/Beginner-needs-help-with-PageActivationContext-and-page-navigation-in-Tapestry-tp4631566p4631914.html Sent from the Tapestry - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org

Re: Beginner needs help with PageActivationContext and page navigation in Tapestry

2011-07-25 Thread Julien Martin
;> View this message in context: >> http://tapestry.1045711.n5.nabble.com/Beginner-needs-help-with-PageActivationContext-and-page-navigation-in-Tapestry-tp4631566p4631615.html >> Sent from the Tapestry - User mailing list archive at Nabble.com. >> >> ---

Re: Beginner needs help with PageActivationContext and page navigation in Tapestry

2011-07-25 Thread Julien Martin
t; for > the context parameter must be "jobPosting" of course. > > - > http://www.winfonet.eu > -- > View this message in context: > http://tapestry.1045711.n5.nabble.com/Beginner-needs-help-with-PageActivationContext-and-page-navigation-in-Tapestry-tp4631566p4631615

Re: Beginner needs help with PageActivationContext and page navigation in Tapestry

2011-07-25 Thread nillehammer
Me again, I have a typo in the pagelink (damn copy and paste). The value for the context parameter must be "jobPosting" of course. - http://www.winfonet.eu -- View this message in context: http://tapestry.1045711.n5.nabble.com/Beginner-needs-help-with-PageActivationContex

Re: Beginner needs help with PageActivationContext and page navigation in Tapestry

2011-07-25 Thread Igor Drobiazko
Returning page's class in a handler method you tell Tapestry where to navigate to, but yor target page needs a context. Just create a Link with context and return it instead of class. 25.07.2011, в 19:06, Julien Martin написал(а): Hello, I have a page that lists job postings (beans) as fo

Re: Beginner needs help with PageActivationContext and page navigation in Tapestry

2011-07-25 Thread nillehammer
.nabble.com/Beginner-needs-help-with-PageActivationContext-and-page-navigation-in-Tapestry-tp4631566p4631593.html Sent from the Tapestry - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr

Beginner needs help with PageActivationContext and page navigation in Tapestry

2011-07-25 Thread Julien Martin
Hello, I have a page that lists job postings (beans) as follows: Template: *http://tapestry.apache.org/schema/tapestry_5_1_0.xsd"; xmlns:p="tapestry:parameter"> activate modify * Java