Examples of UIUserProfileInputSet


Examples of org.exoplatform.webui.organization.UIUserProfileInputSet

                        uiApp.findFirstComponentOfType(UIWorkingWorkspace.class));
                Util.getPortalRequestContext().ignoreAJAXUpdateOnPortlets(true);
            }

            UIAccountEditInputSet accountInput = uiUserInfo.getChild(UIAccountEditInputSet.class);
            UIUserProfileInputSet userProfile = uiUserInfo.getChild(UIUserProfileInputSet.class);
            uiUserInfo.setRenderSibling(UIListUsers.class);
            accountInput.reset();
            userProfile.reset();
            event.getRequestContext().setProcessRender(true);
        }
View Full Code Here

Examples of org.exoplatform.webui.organization.UIUserProfileInputSet

    public static class BackActionListener extends EventListener<UIUserInfo> {
        public void execute(Event<UIUserInfo> event) throws Exception {
            UIUserInfo userInfo = event.getSource();
            UIAccountEditInputSet accountInput = userInfo.getChild(UIAccountEditInputSet.class);
            UIUserProfileInputSet userProfile = userInfo.getChild(UIUserProfileInputSet.class);
            userInfo.setRenderSibling(UIListUsers.class);
            accountInput.reset();
            userProfile.reset();
            event.getRequestContext().setProcessRender(true);
        }
View Full Code Here

Examples of org.exoplatform.webui.organization.UIUserProfileInputSet

        UIFormInputSet accountInputSet = new UIAccountEditInputSet("UIAccountEditInputSet");
        addChild(accountInputSet);
        setSelectedTab(accountInputSet.getId());

        UIFormInputSet userProfileSet = new UIUserProfileInputSet("UIUserProfileInputSet");
        addChild(userProfileSet);

        UIFormInputContainer<?> uiUserMembershipSelectorSet = new UIUserMembershipSelector();
        addChild(uiUserMembershipSelectorSet);
View Full Code Here

Examples of org.exoplatform.webui.organization.UIUserProfileInputSet

        if (user == null) {
            uiApp.addMessage(new ApplicationMessage("UIAccountInputSet.msg.user-is-deleted", null, ApplicationMessage.WARNING));
            UIUserInfo userInfo = getParent();
            if (userInfo != null) {
                UIAccountEditInputSet accountInput = userInfo.getChild(UIAccountEditInputSet.class);
                UIUserProfileInputSet userProfile = userInfo.getChild(UIUserProfileInputSet.class);
                userInfo.setRenderSibling(UIListUsers.class);
                accountInput.reset();
                userProfile.reset();
                context.setProcessRender(true);
            }
            return false;
        }
        String oldEmail = user.getEmail();
View Full Code Here

Examples of org.exoplatform.webui.organization.UIUserProfileInputSet

         if (userInfo != null)
         {
            UIUserManagement userManagement = userInfo.getParent();
            UIListUsers listUser = userManagement.getChild(UIListUsers.class);
            UIAccountEditInputSet accountInput = userInfo.getChild(UIAccountEditInputSet.class);
            UIUserProfileInputSet userProfile = userInfo.getChild(UIUserProfileInputSet.class);
            userInfo.setRenderSibling(UIListUsers.class);
            listUser.search(new Query());
            accountInput.reset();
            userProfile.reset();
            context.setProcessRender(true);
         }
         return false;
      }
      invokeSetBindingField(user);
View Full Code Here

Examples of org.exoplatform.webui.organization.UIUserProfileInputSet

      UIFormInputSet accountInputSet = new UIAccountEditInputSet("UIAccountEditInputSet");
      addChild(accountInputSet);
      setSelectedTab(accountInputSet.getId());

      UIFormInputSet userProfileSet = new UIUserProfileInputSet("UIUserProfileInputSet");
      addChild(userProfileSet);

      UIFormInputContainer<?> uiUserMembershipSelectorSet = new UIUserMembershipSelector();
      addChild(uiUserMembershipSelectorSet);
View Full Code Here

Examples of org.exoplatform.webui.organization.UIUserProfileInputSet

         }
        
         UIUserManagement userManagement = uiUserInfo.getParent();
         UIListUsers listUser = userManagement.getChild(UIListUsers.class);
         UIAccountEditInputSet accountInput = uiUserInfo.getChild(UIAccountEditInputSet.class);
         UIUserProfileInputSet userProfile = uiUserInfo.getChild(UIUserProfileInputSet.class);
         uiUserInfo.setRenderSibling(UIListUsers.class);
         listUser.search(new Query());
         accountInput.reset();
         userProfile.reset();
         event.getRequestContext().setProcessRender(true);
      }
View Full Code Here

Examples of org.exoplatform.webui.organization.UIUserProfileInputSet

      {
         UIUserInfo userInfo = event.getSource();
         UIUserManagement userManagement = userInfo.getParent();
         UIListUsers listUser = userManagement.getChild(UIListUsers.class);
         UIAccountEditInputSet accountInput = userInfo.getChild(UIAccountEditInputSet.class);
         UIUserProfileInputSet userProfile = userInfo.getChild(UIUserProfileInputSet.class);
         userInfo.setRenderSibling(UIListUsers.class);
         listUser.search(new Query());
         accountInput.reset();
         userProfile.reset();
         event.getRequestContext().setProcessRender(true);
      }
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.