Interface SpreadsheetWidget.SheetContextMenuHandler
- Enclosing class:
SpreadsheetWidget
public static interface SpreadsheetWidget.SheetContextMenuHandler
-
Method Summary
Modifier and TypeMethodDescriptionvoidcellContextMenu(com.google.gwt.dom.client.NativeEvent event, int column, int row) Right click (event) on top of the cell at the indexes.voidcolumnHeaderContextMenu(com.google.gwt.dom.client.NativeEvent nativeEvent, int columnIndex) Right click (event) on top of column header at the indexvoidrowHeaderContextMenu(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 cellrow- 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
-