Package org.pentaho.ui.xul.containers

Examples of org.pentaho.ui.xul.containers.XulDialog.hide()


    dialog.show();
  }

  public void closeDialog() {
    XulDialog dialog = (XulDialog) document.getElementById(ELEM_ID_EXPORT_DIALOG);
    dialog.hide();
    updateAggDetails();
  }

  private boolean overlayAdded = false;
View Full Code Here


    previewDialog.show();
  }

  public void hideRelationalPreview() {
    XulDialog previewDialog = (XulDialog) document.getElementById(ELEM_ID_PREVIEW_DIALOG);
    previewDialog.hide();
  }

  public void copyDdlToClipboard() {
    try {
      XulTextbox ddlField = (XulTextbox) document.getElementById(ELEM_ID_DDL_FIELD);
View Full Code Here

      logger.debug("enter executeDdlDmlDone");
    }
    XulDialog dialog = (XulDialog) document.getElementById(ELEM_ID_EXEC_PROGRESS_DIALOG);
    Assert.notNull(dialog, "could not find element with id '" + ELEM_ID_EXEC_PROGRESS_DIALOG + "'");

    dialog.hide();

    if (null != e) {
      XulMessageBox msgBox;
      try {
        msgBox = (XulMessageBox) document.createElement(ELEM_ID_MESSAGEBOX);
View Full Code Here

          parameterValues.put(mondrianSchemaLoader.getParameters().get(2), validatorClassString.toString());
          List<ValidationMessage> messages = mondrianSchemaLoader.validateSchema(parameterValues);
          XulDialog dialog = (XulDialog) document.getElementById("validationProgressDialog");
          Assert.notNull(dialog, "could not find element with id '" + "validationProgressDialog" + "'");
          validationMessages.addAll(messages);
          dialog.hide();
         
        } catch (Exception e) {
          if (logger.isErrorEnabled()) {
            logger.error("an exception occurred", e);
          }
View Full Code Here

         
        } catch (Exception e) {
          if (logger.isErrorEnabled()) {
            logger.error("an exception occurred", e);
          }
          dialog.hide();
        }

      }

    }.start();
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.