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

2007-04-13 Thread kooudy
Another question: It is possible to acquire parent conversation (within nested conversation) and set viewID? Something like this: Conversation c = Conversation.instance(); | c.getParent().setViewId("/detail.jsp"); I don't know how to get parent conversation. I need to return from nested conv

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

2007-04-13 Thread kooudy
Another question:) How to acquire parent conversations pageflow, seam component: Pageflow.instance(); returns pageflow for actual conversation. Need to reposition for parent pageflow. Thanks View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4037072#4037072 Rep

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

2007-05-27 Thread breuniga
Did you find solutions for your questions? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4048899#4048899 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4048899 ___ jboss-user m

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

2007-05-27 Thread hstang
Seam provides a stack of your conversations. @In List conversationStack; Methods of interests are conversationEntry.destroy() and conversationEntry.select() View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4048912#4048912 Reply to the post : http://www.jboss.

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

2007-05-27 Thread hstang
| @In List conversationStack; | View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4048913#4048913 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4048913 ___ jboss-user mailin

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

2007-05-27 Thread hstang
YOu can also do | | @In Conversation conversation; | | conversation.redirectToParent(); | View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4048915#4048915 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=404891

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

2007-05-28 Thread kooudy
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().endBeforeRedire

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

2007-05-28 Thread kooudy
I have forgot: Conversation.pop(); before | Pageflow.instance.reposition("detail"); | to reposition parent pageflow. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4049189#4049189 Reply to the post : http://www.jboss.com/index.html?module=bb&op=pos