Package org.olat.core.gui.components.tabbedpane

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


    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

   * 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

      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

    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

   */
  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

    // 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

    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

   
    //info message controller has two implementations (SingleVM or cluster)
    InfoMessageManager InfoMgr = (InfoMessageManager)CoreSpringFactory.getBean(InfoMessageManager.class);
    infoMsgCtrl = InfoMgr.getInfoMessageController(ureq, getWindowControl());
     
    tabbedPane = new TabbedPane("tp", ureq.getLocale());
    tabbedPane.addTab(ACTION_SESSIONS, usessC.getInitialComponent());
    tabbedPane.addTab(ACTION_INFOMSG,infoMsgCtrl.getInitialComponent());
    tabbedPane.addTab(ACTION_ERRORS, myErrors);
    tabbedPane.addTab(ACTION_LOGLEVELS, myLoglevels);
    tabbedPane.addTab(ACTION_SYSINFO, mySysinfo);
View Full Code Here

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

TOP

Related Classes of org.olat.core.gui.components.tabbedpane.TabbedPane

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.