[JBoss Seam] - Re: Pageflow Question & Switcher Issue
by petemuir
"Delphi's Ghost" wrote : 1) Using the begin-conversation in pages.xml means that you have to use join=true since anytime that page is refreshed, it tries to start a new conversation, which, when called from a long running conversation (as it is in this case since the page flow is a long running conversation) results in an error. To get around this, I set join = true and it works.
Yes, I think this is correct. I need to think about it tho.
anonymous wrote : http://jira.jboss.org/jira/browse/JBSEAM-608, and was marked as fixed in Seam 1.1. Although maybe it was referring to the pageflow restarting each time, and not the conversation.
Yes, this was about the pageflow, not the conversation.
anonymous wrote : 2)
| | <page view-id="/countpage.xhtml">
| | <begin-conversation join="true" pageflow="counter_page" />
| | <description>
| | Count page with value #{counter.value}
| | </description>
| | </page>
| |
|
|
You need to put the description element on the page element in the pageflow, not in pages.xml.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043191#4043191
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4043191
19 years
[JBoss Portal] - Re: How do I utilize the DynaRenderer in portal2.6?
by FredF
Nothing happens. I tried it both in the portal deployment tag but also in the dashboard context tag with value false to see if that affected the dashboard but that did not change anything either. Also I tried it on my custom-object.xml in my deployed warfile but that I guess should definitly not work if I have understood you right. Maybe the dnd is not configurable but set entirely based on the request of either dashboard context or ordinary portal pages?
I found the LayoutDispatcher instance interesting. It looks like that it is involved in setting whether dynaregionrenderer is used or not. In the line
| PageRendererContext page = (PageRendererContext)request.getAttribute(LayoutConstants.ATTR_PAGE);
from where does the request get its LayoutConstants.ATTR_PAGE value?
I see that the ApplicationHttpRequest contains the string "/dashboard" in pathInfo. Maybe the value of LayoutConstants.ATTR_PAGE is set depending on the pathInfo?
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043184#4043184
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4043184
19 years