Interface SpreadsheetWidget.SheetContextMenuHandler

Enclosing class:
SpreadsheetWidget

public static interface SpreadsheetWidget.SheetContextMenuHandler
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    cellContextMenu(com.google.gwt.dom.client.NativeEvent event, int column, int row)
    Right click (event) on top of the cell at the indexes.
    void
    columnHeaderContextMenu(com.google.gwt.dom.client.NativeEvent nativeEvent, int columnIndex)
    Right click (event) on top of column header at the index
    void
    rowHeaderContextMenu(com.google.gwt.dom.client.NativeEvent nativeEvent, int rowIndex)
    Right click (event) on top of row header at the index
  • Method Details

    • cellContextMenu

      void cellContextMenu(com.google.gwt.dom.client.NativeEvent event, int column, int row)
      Right click (event) on top of the cell at the indexes.
      Parameters:
      event - the browser event related (right mouse button click)
      column - 1-based, index of cell
      row - 1-based, index of cell
    • rowHeaderContextMenu

      void rowHeaderContextMenu(com.google.gwt.dom.client.NativeEvent nativeEvent, int rowIndex)
      Right click (event) on top of row header at the index
      Parameters:
      nativeEvent -
      rowIndex - 1-based
    • columnHeaderContextMenu

      void columnHeaderContextMenu(com.google.gwt.dom.client.NativeEvent nativeEvent, int columnIndex)
      Right click (event) on top of column header at the index
      Parameters:
      nativeEvent -
      columnIndex - 1-based