예제 #1
0
파일: Utils.java 프로젝트: canhpv/ecms
 /**
  * Checks if is edits the portlet in create page wizard.
  *
  * @return true, if is edits the portlet in create page wizard
  */
 public static boolean isEditPortletInCreatePageWizard() {
   UIPortalApplication portalApplication = Util.getUIPortalApplication();
   UIMaskWorkspace uiMaskWS = portalApplication.getChildById(UIPortalApplication.UI_MASK_WS_ID);
   // show maskworkpace is being in Portal page edit mode
   if (uiMaskWS.getWindowWidth() > 0 && uiMaskWS.getWindowHeight() < 0) return true;
   return false;
 }