Interface I_CmsContextMenuServerRpc

All Superinterfaces:
Serializable, com.vaadin.shared.communication.ServerRpc

public interface I_CmsContextMenuServerRpc extends com.vaadin.shared.communication.ServerRpc
The context menu server RPC.

Adapted from ContextMenu by Peter Lehto / Vaadin Ltd.

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Called by the client side when context menu is closed.
    void
    itemClicked(String itemId, boolean menuClosed)
    Called by the client widget when context menu item is clicked.
    void
    onContextMenuOpenRequested(int x, int y, String connectorIdOfComponent)
    Called by the client side when context menu is about to be opened.
  • Method Details

    • contextMenuClosed

      Called by the client side when context menu is closed.

    • itemClicked

      void itemClicked(String itemId, boolean menuClosed)
      Called by the client widget when context menu item is clicked.

      Parameters:
      itemId - id of the clicked item
      menuClosed - will be true if menu was closed after the click
    • onContextMenuOpenRequested

      void onContextMenuOpenRequested(int x, int y, String connectorIdOfComponent)
      Called by the client side when context menu is about to be opened.

      Parameters:
      x - mouse x coordinate
      y - mouse y coordinate
      connectorIdOfComponent - component connector id on which the click was made