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

Examples of org.olat.core.gui.control.generic.closablewrapper.CloseableModalWindowController


 
  private void popupResultsSearchController(UserRequest ureq) {
    String title = translate("search.title");
    boolean ajaxOn = getWindowControl().getWindowBackOffice().getWindowManager().isAjaxEnabled();
    if (ajaxOn) {
      searchDialogBox = new CloseableModalWindowController(ureq, getWindowControl(), title, resultCtlr.getInitialComponent(), "ofulltextsearch");
      ((CloseableModalWindowController)searchDialogBox).activate();
      resultCtlr.listenTo(searchDialogBox);
    } else {
      searchDialogBox = new CloseableModalController(getWindowControl(), title, resultCtlr.getInitialComponent());
      ((CloseableModalController)searchDialogBox).activate();
View Full Code Here

TOP

Related Classes of org.olat.core.gui.control.generic.closablewrapper.CloseableModalWindowController

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.