[jboss-user] [JBoss Seam] - Conversation and workspace

c_inconnu do-not-reply at jboss.com
Thu Feb 14 13:14:46 EST 2008


Hi,
I am trying to set a workspace management like in eclipse, ie buttons in the toolbar etc. I am quite new to jsf/seam etc so i read the documentation, did a lot of searching but i cannot make it work : it seems that it is always the same conversation whatever button i click (i used the conversationList component). Here some code (i changed it a lot so maybe it is all weird) :

pages.xml

  |     <page view-id="/admin/admin.xhtml">
  |         <begin-conversation />
  |         <description>Admin</description>
  | 
  |         <navigation from-action="#{perspectiveManager.switchToConfiguration}">
  |             <redirect view-id="/config/config.xhtml" />
  |         </navigation>
  |     </page>
  | 
  |     <page view-id="/config/config.xhtml">
  |         <begin-conversation />
  |         <description>Config</description>
  | 
  |         <navigation from-action="#{perspectiveManager.switchToAdministration}">
  |             <redirect view-id="/admin/admin.xhtml" />
  |         </navigation>
  |     </page>
  | 


toolbar.xhtml


  | <r:toolBarGroup id="perspectiveToolBarGroup" location="right">
  |                 <s:link action="#{perspectiveManager.switchToAdministration}" propagation="end">
  |                     <h:graphicImage value="/img/admin/admin_24.png" />
  |                 </s:link>
  |                 <s:link action="#{perspectiveManager.switchToConfiguration}" propagation="end">
  |                     <h:graphicImage value="/img/config/config_24.png" />
  |                 </s:link>
  |             </r:toolBarGroup>
  | 

I understood that i cannot start a new explicit conversation from another one... but how to do otherwise?

thanks a lot

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

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



More information about the jboss-user mailing list