Package org.pentaho.ui.xul.containers

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


    validationDialog2.hide();
  }
 
  public void helpAboutOpen() {
    XulDialog helpAboutDialog = (XulDialog) document.getElementById("helpAboutDialog");
    helpAboutDialog.show();
  }

  public void helpAboutClose() {
    XulDialog helpAboutDialog = (XulDialog) document.getElementById("helpAboutDialog");
    helpAboutDialog.hide();
View Full Code Here


          }
        });
      } finally {
        pw.flush();
      }
      dialog.show();
     
      Result result = algorithmRunner.getResult();
      logger.debug("result=" + result);
 
      if (result == null || result.getAggregates() == null || result.getAggregates().size() == 0) {
View Full Code Here

  @RequestHandler
  public void loadDatabaseDialog() {
    dataHandler.setData(connectionModel.getDatabaseMeta());

    XulDialog dialog = (XulDialog) document.getElementById(GENERAL_DATASOURCE_WINDOW);
    dialog.show();

    DatabaseMeta databaseMeta = (DatabaseMeta) dataHandler.getData();

    if (databaseMeta != null) {
      connectionModel.setDatabaseMeta(databaseMeta);
View Full Code Here

            waitDialog.hide();
          }
        }
      }.start();

      waitDialog.show();
      if (schema == null) {
        throw new AggDesignerException("Error loading Schema");
      }
      connectionModel.setSchema(schema);
      outputService.init(schema);
View Full Code Here

      XulDialog connectErrorDialog = (XulDialog) document.getElementById(CONNECT_ERROR_DIALOG);
      Assert.notNull(connectErrorDialog, "missing element from document");
      XulTextbox connectErrorDialogMessage = (XulTextbox) document.getElementById("connectErrorDialogMessage");
      Assert.notNull(connectErrorDialogMessage, "missing element from document");
      connectErrorDialogMessage.setValue(e.getLocalizedMessage());
      connectErrorDialog.show();

    }
  }

  @RequestHandler
View Full Code Here

  @RequestHandler
  public void showConnectionDialog() {
    logger.debug("In Thread showing mondrian dialog");
    XulDialog connectionDialog = (XulDialog) document.getElementById(CONNECTION_DIALOG);
    connectionDialog.show();
  }

  @RequestHandler
  public void hideConnectionDialog() {
    XulDialog connectionDialog = (XulDialog) document.getElementById(CONNECTION_DIALOG);
View Full Code Here

      }

    }.start();
    logger.debug("showing wait dialog");
    waitDialog.show();

    if (selectedSchemaProvider == null) {
      XulMessageBox box = (XulMessageBox) document.createElement("messagebox");
      box.setTitle("Error");
      box.setMessage("Error applying OLAP schema");
View Full Code Here

      logger.info("Exiting showRelationalPreview as there are no Aggs defined");
      return;
    }
    XulDialog dialog = (XulDialog) document.getElementById(ELEM_ID_EXPORT_DIALOG);
    dialog.show();
  }

  public void closeDialog() {
    XulDialog dialog = (XulDialog) document.getElementById(ELEM_ID_EXPORT_DIALOG);
    dialog.hide();
View Full Code Here

        return;
      }

      multiDimSchemaField.setValue(schemaBuf.toString());
    }
    previewDialog.show();
  }

  public void hideRelationalPreview() {
    XulDialog previewDialog = (XulDialog) document.getElementById(ELEM_ID_PREVIEW_DIALOG);
    previewDialog.hide();
View Full Code Here

      }

    }.start();

    dialog.show();
    if (logger.isDebugEnabled()) {
      logger.debug("exit startExecuteDdlDml");
    }
  }
 
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.