Package org.pentaho.ui.xul.containers

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


  /**
   * Called by XUL event.
   */
  public void validation1Done() {
    final XulDialog validationDialog1 = (XulDialog) document.getElementById("validationDialog1");
    validationDialog1.hide();
  }

  public void validation2Done() {
    final XulDialog validationDialog2 = (XulDialog) document.getElementById("validationDialog2");
    validationDialog2.hide();
View Full Code Here


    validationDialog1.hide();
  }

  public void validation2Done() {
    final XulDialog validationDialog2 = (XulDialog) document.getElementById("validationDialog2");
    validationDialog2.hide();
  }
 
  public void helpAboutOpen() {
    XulDialog helpAboutDialog = (XulDialog) document.getElementById("helpAboutDialog");
    helpAboutDialog.show();
View Full Code Here

    helpAboutDialog.show();
  }

  public void helpAboutClose() {
    XulDialog helpAboutDialog = (XulDialog) document.getElementById("helpAboutDialog");
    helpAboutDialog.hide();
  }
 
  public void helpAboutLoad() {
   
    // TODO - Use VersionHelper to get version information from the MANIFEST.MF file
View Full Code Here

  }

  public void stopAlgo() {
    logger.debug("enter stopAlgo");
    XulDialog dialog = (XulDialog) document.getElementById("progressDialog");
    dialog.hide();
    algorithmRunner.stop();
  }

  private void algoDone() {
    logger.debug("enter algoDone");
View Full Code Here

  }

  private void algoDone() {
    logger.debug("enter algoDone");
    XulDialog dialog = (XulDialog) document.getElementById("progressDialog");
    dialog.hide();
   
  }

  public AggList getAggList() {
 
View Full Code Here

            ConnectionController.this.schema = selectedSchemaProvider.loadSchema(connectionModel.getCubeName());
          } catch (Exception e) {
            //consume, schema will be null which is checked outside of this thread
            logger.error("Error loading schema: ", e);
          } finally {
            waitDialog.hide();
          }
        }
      }.start();

      waitDialog.show();
View Full Code Here

      workspace.setApplicationUnlocked(true);
      hideConnectionDialog();
    } catch (Exception e) {
      logger.error("Unable to connect", e);
      if (!waitDialog.isHidden()) {
        waitDialog.hide();
      }

      XulDialog connectErrorDialog = (XulDialog) document.getElementById(CONNECT_ERROR_DIALOG);
      Assert.notNull(connectErrorDialog, "missing element from document");
      XulTextbox connectErrorDialogMessage = (XulTextbox) document.getElementById("connectErrorDialogMessage");
View Full Code Here

  @RequestHandler
  public void connectErrorDialogDismiss() {
    XulDialog connectErrorDialog = (XulDialog) document.getElementById(CONNECT_ERROR_DIALOG);
    Assert.notNull(connectErrorDialog, "missing element from document");
    if (!connectErrorDialog.isHidden()) {
      connectErrorDialog.hide();
    }
  }

  @RequestHandler
  public void showConnectionDialog() {
View Full Code Here

  }

  @RequestHandler
  public void hideConnectionDialog() {
    XulDialog connectionDialog = (XulDialog) document.getElementById(CONNECTION_DIALOG);
    connectionDialog.hide();
  }

  private List<String> cubeNames = null;

  /**
 
View Full Code Here

          } catch (XulException ex) {
          }

        } finally {
          logger.debug("hiding dialog if it isn't already hidden");
          waitDialog.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.