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>
<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>
someone please ?