Ejemplo n.º 1
0
  /**
   * 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();
  }
Ejemplo n.º 2
0
  /**
   * 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();
    }
  }