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

Examples of org.olat.core.gui.control.generic.wizard.WizardController


    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"));   
    if (GROUPS_MEMBERS.equals(wizardType)) {
      wizardController.setNextWizardStep(translate("memberlistwizard.groupchoice"), groupsOrAreaChoice);
    } else if (AREAS_MEMBERS.equals(wizardType)) {
View Full Code Here


    bulkStep1Form = new BulkStep1Form(ureq, wControl, bulkActions);
    listenTo(bulkStep1Form);
   
    step1VC.put("step1Form", bulkStep1Form.getInitialComponent());
   
    wc = new WizardController(ureq, wControl, steps);   
    listenTo(wc);
    wc.setWizardTitle(translate("wizard.step1.title"));
    wc.setNextWizardStep(translate("wizard.step1.howto"), step1VC);
    main.setContent(wc.getInitialComponent());   
    putInitialPanel(main);
View Full Code Here

        CMD_SELECT_NODE, ureq.getLocale()));
   
    nodeTableModel = new NodeTableDataModel(nodesTableObjectArrayList, getTranslator());
    nodeListCtr.setTableDataModel(nodeTableModel);
   
    wc = new WizardController(ureq, wControl, 2);
    listenTo(wc);
    wc.setWizardTitle(getTranslator().translate("wizard.nodechoose.title"));
    wc.setNextWizardStep(getTranslator().translate("wizard.nodechoose.howto"), nodeListCtr.getInitialComponent());
    putInitialPanel(wc.getInitialComponent());
  }
View Full Code Here

    super(wControl);
    this.bulkActions = bulkActions;
    trans = new PackageTranslator(PACKAGE, ureq.getLocale());
    sepValVC = new VelocityContainer("inout", VELOCITY_ROOT + "/inout.html", trans, this);
   
    wc = new WizardController(ureq, wControl, steps);
    wc.addControllerListener(this);
    sepValInForm = new SeparatedValueInputForm("sepvalin", trans);
    sepValInForm.addListener(this);
    wc.setWizardTitle(trans.translate("wizard.step1.title"));
    wc.setNextWizardStep(trans.translate("wizard.step1.howto"), sepValInForm);
View Full Code Here

   
    nodeTableModel = new NodeTableDataModel(nodesTableObjectArrayList, getTranslator());
    nodeListCtr.setTableDataModel(nodeTableModel);
    nodeChooseVC.put("nodeTable", nodeListCtr.getInitialComponent());
   
    wc = new WizardController(ureq, wControl, steps);
    wc.addControllerListener(this);
    wc.setWizardTitle(getTranslator().translate("wizard.nodechoose.title"));
    wc.setNextWizardStep(getTranslator().translate("wizard.nodechoose.howto"), nodeChooseVC);
    main.setContent(wc.getInitialComponent());
    putInitialPanel(main);
View Full Code Here

TOP

Related Classes of org.olat.core.gui.control.generic.wizard.WizardController

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.