Package org.olat.core.gui.control.generic.choice

Examples of org.olat.core.gui.control.generic.choice.ChoiceController


    //init wizard step 2   
    boolean singleSelection = false;
    boolean layoutVertical = true;
    String[] keys = getColsChoiceKeys(ureq)
    String[] selectedKeys = getFirstN(keys, 4);
    colsChoiceController = new ChoiceController(ureq, getWindowControl(), keys, getTranslatedKeys(propertyHandlerTranslator,keys), selectedKeys, singleSelection, layoutVertical, "next");   
    this.listenTo(colsChoiceController);
       
    wizardController = new WizardController(ureq, wControl, wizardSteps);   
    this.listenTo(wizardController);
    wizardController.setWizardTitle(translate("memberlistwizard.title"));   
View Full Code Here


          boolean singleSelection = true;
          boolean layoutVertical = true;
          String[] keys = new String[]{"memberlistwizard.archive.type.filePerGroupOrAreaInclGroupMembership", "memberlistwizard.archive.type.filePerGroupOrArea", "memberlistwizard.archive.type.allInOne"};
          String[] translatedKeys = new String[]{translate("memberlistwizard.archive.type.filePerGroupOrAreaInclGroupMembership"), translate("memberlistwizard.archive.type.filePerGroupOrArea"),translate("memberlistwizard.archive.type.allInOne")};
          String[] selectedKeys = new String[]{"memberlistwizard.archive.type.allInOne"};
          outputChoiceController = new ChoiceController(ureq, getWindowControl(), keys, translatedKeys, selectedKeys, singleSelection, layoutVertical, "next");         
          this.listenTo(outputChoiceController);
          velocityContainer3.put("outputChoice", outputChoiceController.getInitialComponent());         
          wizardController.setNextWizardStep(translate("memberlistwizard.outputchoice"), velocityContainer3);
        }
      }     
View Full Code Here

TOP

Related Classes of org.olat.core.gui.control.generic.choice.ChoiceController

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.