[jboss-user] [JBoss Seam] - Re: Conversation management in a desktop-like applikation

swd847 do-not-reply at jboss.com
Tue Oct 9 04:57:40 EDT 2007


Seam contains el enhancements that allow you to pass parameters to action methods, so to make it a bit less verbose you could try:


  | @End
  | String navFunc(String param) 
  | { 
  | return param;
  | }
  | 


  | <rich:menuItem value="#{messages.menu_manage_persons}"
  | action="#{MyClass.navFunc('/modules/manageCatalogs/persons/main.xhtml')}" />
  | 

Although you still need a class to put the navFunc method on, so it does not help that much.

View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4092904#4092904

Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4092904



More information about the jboss-user mailing list