[jboss-user] [JBoss Seam] - Re: Still confuse on usage of page param, help please!

2008-01-23 Thread gus888
Anybody can confirm my understanding on page parameter is correct or not? Thank you. anonymous wrote : So, based on my understanding on page parameter, when I click on s:link view=/comment.seam, the link's f:param will pass #{selectedMember.memberName} to name, and redirect to /comment.xhml

[jboss-user] [JBoss Seam] - Re: Still confuse on usage of page param, help please!

2008-01-23 Thread [EMAIL PROTECTED]
No, when the page is renderered, the EL will be evaluated. When the link is clicked, the params are sent as GET parameters, and then correct. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4122749#4122749 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Still confuse on usage of page param, help please!

2008-01-22 Thread gus888
Thanks, Shane. So, based on my understanding on page parameter, when I click on s:link view=/comment.seam, the link's f:param will pass #{selectedMember.memberName} to name, and redirect to /comment.xhml page, then page param will get the name value and pass it to

[jboss-user] [JBoss Seam] - Re: Still confuse on usage of page param, help please!

2008-01-21 Thread [EMAIL PROTECTED]
The page params are actually needed, the reason it was still working when you commented them out is because I'd originally used @RequestParameter params and forgot to remove them. I've fixed up the example in CVS so it should make more sense now. View the original post :