[jboss-user] [JBoss Seam] - Re: conversations, nested conversations

kooudy do-not-reply at jboss.com
Mon May 28 16:36:07 EDT 2007


Hi,
my solution isn't best but it works: with component Conversation I end up nested conversation, then Redirect to required view a then define transitions for previous node, or reposition pageflow to new view (node):


  | public void endAndRedir() {
  |   Conversation.instance().endBeforeRedirect();
  |   Redirect.instance.setViewId("/projectDetail.jsp");
  | 
  |   //Pageflow.instance.reposition("detail");
  | }
  | 

I commented out last line, because nested conversation doesn't ended.

So I have to define transitions for previous node (/search.jsp, where pageflow is still situated, after redirect) even if this view doesn't have transitions (like new view /projectDetail.jsp).

Hopefully helps.

Hope you find better solution and post it.

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

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



More information about the jboss-user mailing list