Examples of TeamCalImportPage


Examples of org.projectforge.plugins.teamcal.event.importics.TeamCalImportPage

  {
    final PageParameters parameters = new PageParameters();
    if (activeTemplate != null) {
      parameters.add(TeamCalImportPage.PARAM_KEY_TEAM_CAL_ID, activeTemplate.getDefaultCalendarId());
    }
    final TeamCalImportPage importPage = new TeamCalImportPage(parameters);
    importPage.setReturnToPage(parentPage);
    importPage.setEventsToImport(events);
    setResponsePage(importPage);
  }
View Full Code Here

Examples of org.projectforge.plugins.teamcal.event.importics.TeamCalImportPage

        menu = new ContentMenuEntryPanel(getNewContentMenuChildId(), new Link<Void>(ContentMenuEntryPanel.LINK_ID) {
          @Override
          public void onClick()
          {
            final PageParameters parameters = new PageParameters().add(TeamCalImportPage.PARAM_KEY_TEAM_CAL_ID, getData().getId());
            final TeamCalImportPage importPage = new TeamCalImportPage(parameters);
            importPage.setReturnToPage(TeamCalEditPage.this);
            setResponsePage(importPage);
          };
        }, getString("import")).setTooltip(getString("plugins.teamcal.import.ics.tooltip"));
        addContentMenuEntry(menu);
      }
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.