<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<body link="#355491" alink="#4262a1" vlink="#355491" style="background: #e2e2e2; margin: 0; padding: 20px;">

<div>
        <table cellpadding="0" bgcolor="#FFFFFF" border="0" cellspacing="0" style="border: 1px solid #dadada; margin-bottom: 30px; width: 100%; -moz-border-radius: 6px; -webkit-border-radius: 6px;">
                <tbody>
                        <tr>

                                <td>

                                        <table border="0" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF" style="border: solid 2px #ccc; background: #dadada; width: 100%; -moz-border-radius: 6px; -webkit-border-radius: 6px;">
                                                <tbody>
                                                        <tr>
                                                                <td bgcolor="#000000" valign="middle" height="58px" style="border-bottom: 1px solid #ccc; padding: 20px; -moz-border-radius-topleft: 3px; -moz-border-radius-topright: 3px; -webkit-border-top-right-radius: 5px; -webkit-border-top-left-radius: 5px;">
                                                                        <h1 style="color: #333333; font: bold 22px Arial, Helvetica, sans-serif; margin: 0; display: block !important;">
                                                                        <!-- To have a header image/logo replace the name below with your img tag -->
                                                                        <!-- Email clients will render the images when the message is read so any image -->
                                                                        <!-- must be made available on a public server, so that all recipients can load the image. -->
                                                                        <a href="http://community.jboss.org/index.jspa" style="text-decoration: none; color: #E1E1E1">Community</a></h1>
                                                                </td>

                                                        </tr>
                                                        <tr>
                                                                <td bgcolor="#FFFFFF" style="font: normal 12px Arial, Helvetica, sans-serif; color:#333333; padding: 20px;  -moz-border-radius-bottomleft: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 5px; -webkit-border-bottom-left-radius: 5px;"><h3 style="margin: 10px 0 5px; font-size: 17px; font-weight: normal;">
    Public render parameters not always available in render phase
</h3>
<span style="margin-bottom: 10px;">
    created by <a href="http://community.jboss.org/people/mauro.lopez">Mauro Lopez</a> in <i>JBoss Portal</i> - <a href="http://community.jboss.org/message/540886#540886">View the full discussion</a>
</span>
<hr style="margin: 20px 0; border: none; background-color: #dadada; height: 1px;">

<div class="jive-rendered-content"><p>"Hello":</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>The following portlet example shows the value of the "renderParameter" PRP (public render parameter), and if the submit button is pressed, sets it to the value "Hello":</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p><span style="font-family: courier new,courier;">public class MyPortlet extends GenericPortlet {<br/></span></p><p><span style="font-family: courier new,courier;"><br/></span></p><p><span style="font-family: courier new,courier;">&#160;&#160;&#160; private static final String RENDER_PARAMETER = "renderParameter";</span></p><p><span style="font-family: courier new,courier;"><br/></span></p><p><span style="font-family: courier new,courier;">&#160;&#160;&#160; @Override<br/>&#160;&#160;&#160; protected void doView(RenderRequest request, RenderResponse response) </span></p><p><span style="font-family: courier new,courier;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; throws PortletException, IOException {<br/>&#160;&#160;&#160;&#160;&#160;&#160;&#160; response.setContentType("text/html");<br/>&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br/>&#160;&#160;&#160;&#160;&#160;&#160;&#160; String actionURL = response.createActionURL().toString();<br/>&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br/>&#160;&#160;&#160;&#160;&#160;&#160;&#160; PrintWriter out = response.getWriter();<br/>&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br/>&#160;&#160;&#160;&#160;&#160;&#160;&#160; out.print("render parameter value is: " + request.getParameter(RENDER_PARAMETER));<br/>&#160;&#160;&#160;&#160;&#160;&#160;&#160; out.print("&lt;form method=POST action=" + actionURL + "&gt;&lt;input type=submit value=Subir&gt;&lt;/form&gt;");<br/>&#160;&#160;&#160; }</span></p><p><span style="font-family: courier new,courier;"><br/></span></p><p><span style="font-family: courier new,courier;">&#160;&#160;&#160; @Override<br/>&#160;&#160;&#160; public void processAction(ActionRequest request, ActionResponse response) </span></p><p><span style="font-family: courier new,courier;">&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; throws PortletException, IOException {<br/>&#160;&#160;&#160;&#160;&#160;&#160;&#160; response.setRenderParameter(RENDER_PARAMETER, "Hello");<br/>&#160;&#160;&#160; }&#160;&#160;&#160; <br/>&#160;&#160;&#160; <br/>}</span></p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p><span style="font-family: courier new,courier;">&lt;portlet&gt;<br/>&#160;&#160;&#160; &lt;portlet-name&gt;MyPortlet&lt;/portlet-name&gt;<br/>&#160;&#160;&#160; &lt;portlet-class&gt;test.MyPortlet&lt;/portlet-class&gt;<br/>&#160;&#160;&#160; &lt;expiration-cache&gt;-0&lt;/expiration-cache&gt;<br/>&#160;&#160;&#160; &lt;supports&gt;<br/>&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;mime-type&gt;text/html&lt;/mime-type&gt;<br/>&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;portlet-mode&gt;VIEW&lt;/portlet-mode&gt;<br/>&#160;&#160;&#160; &lt;/supports&gt;<br/>&#160;&#160;&#160; &lt;portlet-info&gt;&#160; <br/>&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;title&gt;MyPortlet&lt;/title&gt;<br/>&#160;&#160;&#160; &lt;/portlet-info&gt;<br/>&#160;&#160;&#160; <br/>&#160;&#160;&#160; &lt;supported-public-render-parameter&gt;renderParameter&lt;/supported-public-render-parameter&gt;<br/>&lt;/portlet&gt;<br/></span></p><p><span style="font-family: courier new,courier;"><br/></span></p><p><span style="font-family: courier new,courier;">&lt;public-render-parameter&gt;<br/>&#160;&#160;&#160; &lt;identifier&gt;renderParameter&lt;/identifier&gt;<br/><span>&#160;&#160;&#160; &lt;qname xmlns:x="</span><a class="jive-link-external-small" href="http://www.ideasoft.biz/public-render-parameters" target="_blank">http://www.ideasoft.biz/public-render-parameters</a><span>"&gt;x:renderParameter&lt;/qname&gt;</span><br/>&lt;/public-render-parameter&gt;</span></p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>After the button is pressed, the PRP is set, and (at least) the following actions will NOT UNSET it:</p><ol><li>maximizing/restoring the portlet window</li><li>playing with other portlets (of course, the other portlets do not use this particular PRP)</li><li>Navigate to other pages, and then return (e.g. clicking pages in the navigation bar)</li></ol><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>This is, I think, the expected behaviour, since any PRP (as any other render parameter) should be available, once set, after any subsequent render phase.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>Well, this was the situation with jboss portal 2.7.0, but in portal 2.7.2, when you play around with the pages in the navigation bar, the PRP is lost.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>Is this a bug? Do you know how to get 2.7.2 behave like 2.7.0?</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>Thanks!</p></div>

<div style="background-color: #f4f4f4; padding: 10px; margin-top: 20px;">
    <p style="margin: 0;">Reply to this message by <a href="http://community.jboss.org/message/540886#540886">going to Community</a></p>
        <p style="margin: 0;">Start a new discussion in JBoss Portal at <a href="http://community.jboss.org/choose-container!input.jspa?contentType=1&containerType=14&container=2011">Community</a></p>
</div></td>
                        </tr>
                    </tbody>
                </table>


                </td>
            </tr>
        </tbody>
    </table>

</div>

</body>
</html>