Package org.projectforge.gantt

Examples of org.projectforge.gantt.GanttRelationType


    final DropDownChoice<GanttRelationType> relationTypeChoice = new DropDownChoice<GanttRelationType>("relationType",
        new PropertyModel<GanttRelationType>(ganttObject, "relationType"), relationTypeChoiceRenderer.getValues(),
        relationTypeChoiceRenderer);
    relationTypeChoice.setNullValid(true);
    addColumn(item, relationTypeChoice, null);
    final GanttRelationType relationType = task != null ? task.getGanttRelationType() : null;
    new RejectSaveLinksFragment("rejectSaveRelationType", item, relationTypeChoice, task,
        relationType != null ? getString(relationType.getI18nKey()) : "") {
      @Override
      protected void onSave()
      {
        task.setGanttRelationType(ganttObject.getRelationType());
        taskDao.update(task);
View Full Code Here

TOP

Related Classes of org.projectforge.gantt.GanttRelationType

Copyright © 2018 www.massapicom. 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.