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

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


   * @param wControl
   */
  public PwChangeController(UserRequest ureq, WindowControl wControl) {
    super(ureq, wControl);
    myContent = createVelocityContainer("pwchange");
    wic = new WizardInfoController(ureq, 4);
    myContent.put("pwwizard", wic.getInitialComponent());
    pwarea = new Panel("pwarea");
    myContent.put("pwarea", pwarea);
    pwKey = ureq.getHttpReq().getParameter("key");
    if (pwKey == null || pwKey.equals("")) {
View Full Code Here


    }

    // break if nothing survived cleanup or invalid configuration
    if (aftctrls == null || aftctrls.size() == 0) { return; }

    wiz = new WizardInfoController(ureq, aftctrls.size());
    vC.put("wizard", wiz.getInitialComponent());
    vC.contextPut("ctrlCount", aftctrls.size());

    // get first Ctrl into Wizard
    putControllerToPanel(ureq, wControl, 0);
View Full Code Here

      setTranslator(UserManager.getInstance().getPropertyHandlerTranslator(getTranslator()));     
    }
   
    //cosntruct content
    myContent = createVelocityContainer("reg");
    wic = new WizardInfoController(ureq, 6);
    listenTo(wic);
    myContent.put("regwizard", wic.getInitialComponent());
    regarea = new Panel("regarea");
    myContent.put("regarea", regarea);
    regKey = ureq.getHttpReq().getParameter("key");
View Full Code Here

TOP

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

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.