Examples of JiraIssuesPanel


Examples of org.projectforge.web.wicket.components.JiraIssuesPanel

        final MaxLengthTextArea description = new MaxLengthTextArea(TextAreaPanel.WICKET_ID, model);
        if (entry.isDeleted() == true) {
          description.setEnabled(false);
        }
        fs.add(description);
        fs.add(new JiraIssuesPanel(fs.newChildId(), entry.getDescription()));
        fs.addJIRAField(model);
      }
    }
  }
View Full Code Here

Examples of org.projectforge.web.wicket.components.JiraIssuesPanel

   * @return this for chaining.
   */
  public FieldsetPanel addJIRAField(final IModel<String> model)
  {
    if (WicketUtils.isJIRAConfigured() == true) {
      add(new JiraIssuesPanel(newChildId(), model));
      add(WicketUtils.getJIRASupportTooltipIcon(this).setColor(CSSColor.GRAY), FieldSetIconPosition.TOP_RIGHT);
    }
    return this;
  }
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.