com.gwtext.client.widgets.grid.event
Class GridCellListenerAdapter
java.lang.Object
com.gwtext.client.widgets.grid.event.GridCellListenerAdapter
- All Implemented Interfaces:
- GridCellListener
public class GridCellListenerAdapter
- extends java.lang.Object
- implements GridCellListener
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
GridCellListenerAdapter
public GridCellListenerAdapter()
onCellClick
public void onCellClick(GridPanel grid,
int rowIndex,
int colindex,
EventObject e)
- Description copied from interface:
GridCellListener
- Fires when a cell is clicked.
- Specified by:
onCellClick in interface GridCellListener
- Parameters:
grid - thisrowIndex - the row indexcolindex - the column indexe - the event object
onCellContextMenu
public void onCellContextMenu(GridPanel grid,
int rowIndex,
int cellIndex,
EventObject e)
- Description copied from interface:
GridCellListener
- Fires when a cell is right clicked.
- Specified by:
onCellContextMenu in interface GridCellListener
- Parameters:
grid - thisrowIndex - the row indexcellIndex - the cell indexe - the event object
onCellDblClick
public void onCellDblClick(GridPanel grid,
int rowIndex,
int colIndex,
EventObject e)
- Description copied from interface:
GridCellListener
- Fires when a cell is double clicked.
- Specified by:
onCellDblClick in interface GridCellListener
- Parameters:
grid - thisrowIndex - the row indexcolIndex - the column indexe - the event object