com.gwtext.client.widgets.grid.event
Interface GridRowListener

All Known Implementing Classes:
GridRowListenerAdapter

public interface GridRowListener


Method Summary
 void onRowClick(GridPanel grid, int rowIndex, EventObject e)
          Fires when a row is clicked.
 void onRowContextMenu(GridPanel grid, int rowIndex, EventObject e)
          Fires when a row is right clicked.
 void onRowDblClick(GridPanel grid, int rowIndex, EventObject e)
          Fires when a row is double clicked.
 

Method Detail

onRowClick

void onRowClick(GridPanel grid,
                int rowIndex,
                EventObject e)
Fires when a row is clicked.

Parameters:
grid - this
rowIndex - the row index
e - the event object

onRowDblClick

void onRowDblClick(GridPanel grid,
                   int rowIndex,
                   EventObject e)
Fires when a row is double clicked.

Parameters:
grid - this
rowIndex - the row index
e - the event object

onRowContextMenu

void onRowContextMenu(GridPanel grid,
                      int rowIndex,
                      EventObject e)
Fires when a row is right clicked.

Parameters:
grid - this
rowIndex - the row index
e - the event object