Package org.olat.core.gui.components.panel

Examples of org.olat.core.gui.components.panel.OncePanel


    // GUI messages
    guimsgVc = createVelocityContainer("guimsg")
   
    guiMessage = new GUIMessage();
    guimsgVc.contextPut("guiMessage", guiMessage);
    guimsgPanel = new OncePanel("guimsgPanel");

    mainVc.put("guimessage", guimsgPanel)
   
    final WindowControl origWCo = wControl; //no need to use: super.getWindowControl();
   
View Full Code Here


          newCookie.setPath(WebappHelper.getServletContextPath());
          newCookie.setSecure(ureq.getHttpReq().isSecure());
          newCookie.setComment("cookie allowing olat admin users to bypass dmz rejects");
          ureq.getHttpResp().addCookie(newCookie);

          OncePanel oncePanel = new OncePanel("refresh");
          oncePanel.setContent(createVelocityContainer("refresh"));
          mainVc.put("refresh", oncePanel);
          break;
        }
      }
    } else if (source == toggleStartStop) {
View Full Code Here

    super(ureq, null);

    this.baseFullWebappControllerParts = baseFullWebappControllerParts;

    guiMessage = new GUIMessage();
    guimsgPanel = new OncePanel("guimsgPanel");

    // define the new windowcontrol
    final WindowControl origWCo = ouisc_wControl;

    WindowControl myWControl = new WindowControl() {
View Full Code Here

TOP

Related Classes of org.olat.core.gui.components.panel.OncePanel

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.