コード例 #1
0
ファイル: CmsDateBox.java プロジェクト: rinnes/opencms-core
  /**
   * The date box on blur action.
   *
   * <p>If the date box loses the focus the date time picker should be updated from the date box
   * value.
   *
   * <p>
   */
  protected void onDateBoxBlur() {

    if (!m_popup.isShowing()) {
      updateFromTextBox();
    }
    updateCloseBehavior();
  }
コード例 #2
0
ファイル: CmsDateBox.java プロジェクト: rinnes/opencms-core
  /**
   * The date box on click action.
   *
   * <p>If the date box is clicked the time date picker should be shown.
   *
   * <p>
   */
  protected void onDateBoxClick() {

    if (!m_popup.isShowing()) {
      showPopup();
    }
  }