[jboss-user] [JBoss Seam] - Re: Action execution upon page load

2008-01-15 Thread piotr.walczyszyn
Probably you could also use this: | ... | f:view beforePhase=#{pageLoadCallback.beforePhase} | ... where ... | public class PageLoadCallback { | | public void beforePhase(PhaseEvent event) { | ... | hope it helps View the original post :

[jboss-user] [JBoss Seam] - Re: Action execution upon page load

2008-01-02 Thread fady.matar
Thanks Pete, Could that become a new feature request? I believe it can be useful when rendering UI components. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4116364#4116364 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Action execution upon page load

2008-01-02 Thread [EMAIL PROTECTED]
Yes, it is something we have discussed (and consider useful), but it is currently hard to implement (I think we would need an extension point added to facelets OR to use gravel style inline to the page declarations of stuff like page actions). So, do open a JIRA issue. View the original post

[jboss-user] [JBoss Seam] - Re: Action execution upon page load

2007-12-30 Thread [EMAIL PROTECTED]
There is currently no support for this, but you can fake it by doing something h:outputText rendered=#{foo.action} / public boolean action() { |// Do work |return false; | } View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4116104#4116104 Reply to