Examples of Kost2DropDownChoice


Examples of org.projectforge.web.fibu.Kost2DropDownChoice

            final TaskDO task = (TaskDO) taskParam.getValueAsObject();
            if (task != null) {
              taskId = task.getId();
            }
          }
          final Kost2DropDownChoice kost2DropDownChoice = new Kost2DropDownChoice(fs.getDropDownChoiceId(),
              (Kost2DO) param.getValueAsObject(), taskId) {
            @Override
            protected void setKost2Id(final Integer kost2Id)
            {
              param.setValue(String.valueOf(kost2Id));
View Full Code Here

Examples of org.projectforge.web.fibu.Kost2DropDownChoice

    userPrefDao.setValueObject(param, value);
    final List<UserPrefEntryDO> dependents = getData().getDependentUserPrefEntries(param.getParameter());
    if (dependents != null) {
      for (final UserPrefEntryDO entry : dependents) {
        if (Kost2DO.class.isAssignableFrom(entry.getType()) == true) {
          final Kost2DropDownChoice choice = (Kost2DropDownChoice) form.dependentsMap.get(entry.getParameter());
          choice.setTaskId((Integer) value);
        }
      }
    }
  }
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.