Examples of LazyPageList


Examples of org.exoplatform.commons.utils.LazyPageList

      if (q.getLastName() != null)
      {
         qb.attributeValuesFilter(UserDAOImpl.USER_LAST_NAME, new String[]{q.getLastName()});
      }

      return new LazyPageList(new IDMUserListAccess(this, service_, qb, 20, false), 20);
   }
View Full Code Here

Examples of org.exoplatform.commons.utils.LazyPageList

      }

      qb.addRelatedGroup(jbidGroup);

      return new LazyPageList(new IDMUserListAccess(this, service_, qb, 20, false), 20);
   }
View Full Code Here

Examples of org.exoplatform.commons.utils.LazyPageList

   {
      super(null, null);
      UIGrid uiGrid = addChild(UIGrid.class, null, "TableGroup");
      uiGrid.configure("id", new String[]{"id", "label", "description"}, new String[]{"Delete"});

      uiGrid.getUIPageIterator().setPageList(new LazyPageList(new AccessGroupListAccess(null), 10));

      UIFormPopupWindow uiPopup = addChild(UIFormPopupWindow.class, null, "UIGroupSelector");
      uiPopup.setWindowSize(540, 0);
      UIGroupSelector uiGroupSelector = createUIComponent(UIGroupSelector.class, null, null);
      uiPopup.setUIComponent(uiGroupSelector);
View Full Code Here

Examples of org.exoplatform.commons.utils.LazyPageList

      for (Group group : groups)
      {
         if (checkAvailable(group))
            list.add(group);
      }
      uiIterator.setPageList(new LazyPageList(new AccessGroupListAccess(list), 10));
   }
View Full Code Here

Examples of org.exoplatform.commons.utils.LazyPageList

   public void clearGroups() throws Exception
   {
      List<Object> list = new ArrayList<Object>();
      UIPageIterator uiIterator = getChild(UIGrid.class).getUIPageIterator();
      uiIterator.setPageList(new LazyPageList(new AccessGroupListAccess(list), 10));
   }
View Full Code Here

Examples of org.exoplatform.commons.utils.LazyPageList

      for (String id : groups)
      {
         Group group = service.getGroupHandler().findGroupById(id);
         list.add(group);
      }
      uiIterator.setPageList(new LazyPageList(new AccessGroupListAccess(list), 10));
   }
View Full Code Here

Examples of org.exoplatform.commons.utils.LazyPageList

         addMembership(new Membership(membership.getUserName(), membership.getId(), membership.getGroupId(), membership
            .getMembershipType()));
      }

      UIGrid uiGrid = getChild(UIGrid.class);
      LazyPageList pageList = new LazyPageList(new MembershipListAccess(getMembership()), 10);
      uiGrid.getUIPageIterator().setPageList(pageList);
   }
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.