3 Replies Latest reply on May 25, 2008 2:44 AM by pavel.myshkin

    Portlets: Partial Refresh

    pshaktig

      Hi all,

      This is query regarding partial refresh on JBoss portal. I have three portlets on a page. Whenever I perform action in portlet-1 processAction() of portlet-1 is invoked and then deView of portlet-2 and portlet-3.

      I read through partial refresh section of JBoss reference guide and enabled partial refresh for portlet-2 but to no avail. Both the portlets 2 and 3 are refreshed when I perform a submit in portlet-1.

      Please provide some code or configuration required in JBoss or some article through which I can achieve desired affect.

      Thanks in advance.
      Shakti

        • 1. Re: Portlets: Partial Refresh
          andrewg

          Hi,

          Were you able to solve this problem? I you have please let me know how to resolve.

          Thanks,
          Andrew

          • 2. Re: Portlets: Partial Refresh

            Partial refresh (PR) works only if you enable it on the page.
            You can enable it from the Admin portal or by deploying a deployment with the PR property set to true.

            If enabled it will work on user interaction through links generated from the RenderResponse with the methods createRenderURL (for use with ) and createActionURL (for ).

            If you use JSF then your form's action is auto generated by the framework and this means that commandLink and commandButton will cause a full page refresh.

            • 3. Re: Portlets: Partial Refresh

              Partial refresh (PR) works only if you enable it on the page.
              You can enable it from the Admin portal or by deploying a deployment with the PR property set to true.

              If enabled it will work on user interaction through links generated from the RenderResponse with the methods createRenderURL (for use with A tag ) and createActionURL (for FORM's action ).

              If you use JSF then your form's action is auto generated by the framework and this means that commandLink and commandButton will cause a full page refresh.