Examples of NewGroupSelectPanel


Examples of org.projectforge.web.user.NewGroupSelectPanel

      taskSelectPanel.init();
    }
    {
      // Group
      final FieldsetPanel fs = gridBuilder.newFieldset(getString("group")).suppressLabelForWarning();
      groupSelectPanel = new NewGroupSelectPanel(fs.newChildId(), new PropertyModel<GroupDO>(data, "group"),
          parentPage, "groupId");
      fs.add(groupSelectPanel.setRequired(true));
      groupSelectPanel.init();
    }
    {
View Full Code Here

Examples of org.projectforge.web.user.NewGroupSelectPanel

    super.init();
    gridBuilder.newSplitPanel(GridSize.COL66);
    {
      // Group
      final FieldsetPanel fs = gridBuilder.newFieldset(getString("group")).suppressLabelForWarning();
      groupSelectPanel = new NewGroupSelectPanel(fs.newChildId(), new Model<GroupDO>() {
        @Override
        public GroupDO getObject()
        {
          return userGroupCache.getGroup(getSearchFilter().getGroupId());
        }
View Full Code Here

Examples of org.projectforge.web.user.NewGroupSelectPanel

      fs.add(statusChoice);
    }
    {
      // project manager group
      final FieldsetPanel fs = gridBuilder.newFieldset(getString("fibu.projekt.projektManagerGroup")).suppressLabelForWarning();
      groupSelectPanel = new NewGroupSelectPanel(fs.newChildId(), new PropertyModel<GroupDO>(data,
          "projektManagerGroup"), parentPage, "projektManagerGroupId");
      fs.add(groupSelectPanel);
      groupSelectPanel.init();
    }
    {
View Full Code Here

Examples of org.projectforge.web.user.NewGroupSelectPanel

      fs.addHelpIcon(new ResourceModel("plugins.todo.task.tooltip.title"), new ResourceModel("plugins.todo.task.tooltip.content"));
    }
    {
      // Group
      final FieldsetPanel fs = gridBuilder.newFieldset(ToDoDO.class, "group");
      groupSelectPanel = new NewGroupSelectPanel(fs.newChildId(), new PropertyModel<GroupDO>(data, "group"),
          parentPage, "groupId");
      fs.add(groupSelectPanel);
      fs.setLabelFor(groupSelectPanel);
      fs.addHelpIcon(new ResourceModel("plugins.todo.group.tooltip.title"), new ResourceModel("plugins.todo.group.tooltip.content"));
      groupSelectPanel.init();
View Full Code Here

Examples of org.projectforge.web.user.NewGroupSelectPanel

    final DivPanel section = gridBuilder.getPanel();
    section.add(new Heading3Panel(section.newChildId(), String.valueOf(number) + ". " + getString("task.wizard." + key)));
    section.add(new DivTextPanel(section.newChildId(), getString("task.wizard." + key + ".intro")));
    {
      final FieldsetPanel fs = gridBuilder.newFieldset(getString("group")).suppressLabelForWarning();
      final NewGroupSelectPanel groupSelectPanel = new NewGroupSelectPanel(fs.newChildId(), new PropertyModel<GroupDO>(this, key), parentPage,
          key + "Id");
      fs.add(groupSelectPanel);
      groupSelectPanel.setShowFavorites(false).init();
      final Button createGroupButton = new Button("button", new Model<String>("createGroup" + key)) {
        @Override
        public final void onSubmit()
        {
          parentPage.managerGroupCreated = "managerGroup".equals(key);
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.