Examples of refreshUIPage()


Examples of org.exoplatform.portal.webui.portal.UIPortal.refreshUIPage()

            //Case 1: Both navigation type and id are not changed, but current page node is changed
            if(!currentUri.equals(targetedUri))
            {
               showedUIPortal.setSelectedNode(targetPageNode);
               showedUIPortal.setSelectedPath(targetedPathNodes);
               showedUIPortal.refreshUIPage();
               pcontext.setFullRender(true);
               return;
            }
         }
         else
View Full Code Here

Examples of org.exoplatform.portal.webui.portal.UIPortal.refreshUIPage()

               //Update selected navigation on UserPortalConfig, that is mandatory as at the moment the PortalConfig
               //does not hold any navigation data.
               userPortalConfig.updateSelectedNavigation(newNavType, newNavId);
              
               cachedUIPortal.refreshUIPage();
               return;
            }
            else
            {
               UIPortal newUIPortal = buildUIPortal(targetedNav, uiPortalApp, uiPortalApp.getUserPortalConfig());
View Full Code Here

Examples of org.exoplatform.portal.webui.portal.UIPortal.refreshUIPage()

               }
               newUIPortal.setSelectedNode(targetPageNode);
               newUIPortal.setSelectedPath(targetedPathNodes);
               uiPortalApp.setShowedUIPortal(newUIPortal);
               uiPortalApp.putCachedUIPortal(newUIPortal);
               newUIPortal.refreshUIPage();
               return;
            }
         }
      }
     
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.