Пример #1
0
  /*
   * (non-Javadoc)
   * @see de.xwic.appkit.webbase.dialog.AbstractDialogWindow#show()
   */
  public void show() {
    if (baseContainer == null) {
      createControls();
    }

    // -30, in case of scrollbars.. just to be safe
    int left = Page.findPage(this).getPageSize().width - getWidth() - 70;
    if (left != getLeft()) {
      setLeft(left);
    }

    setTop(173);

    setVisible(true);
  }