Examples of TabbedPane


Examples of org.olat.core.gui.components.tabbedpane.TabbedPane

  public GuiDemoPanesController(UserRequest ureq, WindowControl wControl) {
    super(ureq,wControl);
   
    vcMain = createVelocityContainer("guidemo-panes");
   
    tabbedPane = new TabbedPane("pane", ureq.getLocale());
    tabbedPane.addListener(this);
   
    pane1 = createVelocityContainer("guidemo-pane1");
    pane2 = createVelocityContainer("guidemo-pane2");
    pane3 = createVelocityContainer("guidemo-pane3");
View Full Code Here

Examples of org.olat.core.gui.components.tabbedpane.TabbedPane

      selTree.setTreeModel(cetm);
      selTree.setActionCommand("processpublish");
      selTree.setFormButtonKey("publizieren");
      selTree.addListener(this);

      tabbedNodeConfig = new TabbedPane("tabbedNodeConfig", ureq.getLocale());
      main.put(tabbedNodeConfig.getComponentName(), tabbedNodeConfig);

      toolC = ToolFactory.createToolController(getWindowControl());
      listenTo(toolC);
      toolC.addHeader(translate(NLS_HEADER_TOOLS));
View Full Code Here

Examples of org.olat.core.gui.components.tabbedpane.TabbedPane

      CoordinatorManager.getCoordinator().getEventBus().registerFor(this, ureq.getIdentity(), currBusinessGroup);

      /*
       * add Tabbed Panes for configuration
       */
      tabbedPane = new TabbedPane("bgTabbs", ureq.getLocale());
      tabbedPane.addListener(this);
      vc_tab_bgDetails = createTabDetails(ureq, currBusinessGroup);// modifies vc_tab_bgDetails
      tabbedPane.addTab(translate("group.edit.tab.details"), vc_tab_bgDetails);
      if (flags.isEnabled(BGConfigFlags.GROUP_COLLABTOOLS)) {
        vc_tab_bgCTools = createTabCollabTools(ureq);
View Full Code Here

Examples of org.olat.core.gui.components.tabbedpane.TabbedPane

    setBasePackage(RepositoryManager.class);
    this.repositoryEntry = entry;
    // wrapper velocity container with a tabbed pane
    descVC = createVelocityContainer("bgrep");
    descVC.contextPut("title", entry.getDisplayname());
    tabbedPane = new TabbedPane("descTB", ureq.getLocale());
    chdesctabVC = createVelocityContainer("changedesctab1");
    chdesctabVC.contextPut("id", entry.getResourceableId() == null ? "-" : entry.getResourceableId().toString());
    chdesctabVC.contextPut("initialauthor", entry.getInitialAuthor());
    descVC.contextPut("disabledforwardreason", translate("disabledforwardreason"));
    // repo entry details form
View Full Code Here

Examples of org.olat.core.gui.components.tabbedpane.TabbedPane

   * configuration
   * @param identity
   * @param ureq
   */
  private void initTabbedPane(UserRequest ureq) {
    userDeleteTabP = new TabbedPane("userDeleteTabP", ureq.getLocale());
    userDeleteTabP.addListener(this);
   
    userSelectionCtr = new SelectionController(ureq, getWindowControl());
    userSelectionCtr.addControllerListener(this);
    userDeleteTabP.addTab(translator.translate("delete.workflow.tab.start.process"), userSelectionCtr.getInitialComponent());
View Full Code Here

Examples of org.olat.core.gui.components.tabbedpane.TabbedPane

      isAuthor = ureq.getUserSession().getRoles().isAuthor();
    }
   
    bgVC = createVelocityContainer("bgrep");
    bgVC.contextPut("title", entry.getDisplayname());
    tabbedPane = new TabbedPane("descTB", ureq.getLocale());
   
    editproptabpubVC = createVelocityContainer("editproptabpub");
    tabbedPane.addTab(translate("tab.public"), editproptabpubVC);
    propPupForm = new PropPupForm("proppupform", getTranslator(), entry);
    propPupForm.addListener(this);
View Full Code Here

Examples of org.olat.core.gui.components.tabbedpane.TabbedPane

    this.areaManager = BGAreaManagerImpl.getInstance();
    this.bgContext = area.getGroupContext();
    this.contextManager = BGContextManagerImpl.getInstance();

    // tabbed pane
    tabbedPane = new TabbedPane("tabbedPane", ureq.getLocale());
    tabbedPane.addListener(this);
    // details tab
    initAndAddDetailsTab(ureq, wControl);
    // groups tab
    initAndAddGroupsTab();
View Full Code Here

Examples of org.olat.core.gui.components.tabbedpane.TabbedPane

   */
  private void initTabbedPane(Identity identity, UserRequest ureq) {
    // first Initialize the user details tabbed pane
    Map configuration = BaseSecurityModule.getConfiguration();
    boolean isOlatAdmin = ureq.getUserSession().getRoles().isOLATAdmin();
    userTabP = new TabbedPane("userTabP", ureq.getLocale());
   
    /**
     *  Determine, whether the user admin is or is not able to edit all fields in user
     *  profile form. The system admin is always able to do so.
     */
 
View Full Code Here

Examples of org.olat.core.gui.components.tabbedpane.TabbedPane

    // try to acquire edit lock on business group context
    String lockSubKey = "contextEdit";
    this.lockEntry = CoordinatorManager.getCoordinator().getLocker().acquireLock(groupContext, ureq.getIdentity(), lockSubKey);
    if (this.lockEntry.isSuccess()) {
      this.tabbedPane = new TabbedPane("tabbedPane", ureq.getLocale());
      this.tabbedPane.addListener(this);
      // details and metadata
      this.tabDetailsVC = doCreateTabDetails(ureq);
      this.tabbedPane.addTab(translate("edit.tab.details"), this.tabDetailsVC);
      // owner group management
View Full Code Here

Examples of org.olat.core.gui.components.tabbedpane.TabbedPane

    contentVC.contextPut("menuTitle", ne.getCourseNode().getShortTitle());

    if (!newCreatedProject) {
      backLink = LinkFactory.createLinkBack(contentVC, this);
    }
    myTabbedPane = new TabbedPane("projectTabbedPane", ureq.getLocale());   
    detailsController = new ProjectDetailsPanelController(ureq, wControl, project, newCreatedProject, userCourseEnv.getCourseEnvironment(), ne.getCourseNode(), projectBrokerModuleConfiguration);
    detailsController.addControllerListener(this);
    myTabbedPane.addTab(translate("tab.project.details"), detailsController.getInitialComponent());
    projectFolderController = new ProjectFolderController( ureq, wControl, userCourseEnv, ne, false, project);
    myTabbedPane.addTab(translate("tab.project.folder"), projectFolderController.getInitialComponent());
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.