示例#1
0
  /**
   * Opens the help screen for the current module.
   *
   * @param event
   * @throws InterruptedException
   */
  private void doHelp(Event event) throws InterruptedException {

    ZksampleMessageUtils.doShowNotImplementedMessage();

    // we stop the propagation of the event, because zk will call ALL events
    // with the same name in the namespace and 'btnHelp' is a standard
    // button in this application and can often appears.
    // Events.getRealOrigin((ForwardEvent) event).stopPropagation();
    event.stopPropagation();
  }
示例#2
0
 /**
  * when the "print calendar" button is clicked.
  *
  * @param event
  * @throws InterruptedException
  */
 public void onClick$btn_Calendar_PrintCalendar(Event event) throws InterruptedException {
   ZksampleMessageUtils.doShowNotImplementedMessage();
 }
 /**
  * When the "help" button is clicked. <br>
  *
  * @param event
  * @throws InterruptedException
  */
 public void onClick$btnHelp(Event event) throws InterruptedException {
   ZksampleMessageUtils.doShowNotImplementedMessage();
 }
示例#4
0
  /**
   * when the "help" button is clicked. <br>
   *
   * @param event
   * @throws InterruptedException
   */
  public void onClick$btnHelp(Event event) throws InterruptedException {
    // logger.debug(event.toString());

    ZksampleMessageUtils.doShowNotImplementedMessage();
  }
 /**
  * when the "print" button is clicked.
  *
  * @param event
  * @throws InterruptedException
  */
 public void onClick$button_SecLoginlogList_PrintLoginList(Event event)
     throws InterruptedException {
   ZksampleMessageUtils.doShowNotImplementedMessage();
 }