RE: How to pass parameters between Page and component

2006-10-10 Thread jake123
Thank you for your answer, I will try this solution too. Cheers, Jacob -- View this message in context: http://www.nabble.com/How-to-pass-parameters-between-Page-and-component-tf2412533.html#a6737950 Sent from the Tapestry - User mailing list archive at Nabble.com.

Re: How to pass parameters between Page and component

2006-10-10 Thread jake123
thank you Dennis for your answer, it works perfectly fine :-) Cheers, Jacob -- View this message in context: http://www.nabble.com/How-to-pass-parameters-between-Page-and-component-tf2412533.html#a6737930 Sent from the Tapestry - User mailing list archive at Nabble.com. --

RE: How to pass parameters between Page and component

2006-10-09 Thread Firas Adiler
Hi, It should be more like: In your ArticleComp you access the 'articleId' parameter like this: IBinding iBinding = getBinding("articleId"); String articleId = (String) iBinding.getObject("articleId"); Regards, -Original Message- From: jake123 [m

Re: How to pass parameters between Page and component

2006-10-09 Thread Dennis Sinelnikov
Jacob, Try this... Index.page: ArticleComp.jwc: Index.java should contain getCurrentArticleId(); Regards, Dennis jake123 wrote: Hi, I have a (hopefully) easy question. I have My index.page where I use some components. One of them needs a parameter articleId passed to it from my