Interface JGrid.JGridCallback
All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface JGrid.JGridCallback

public interface JGridCallback
Callback interface for the grid


Method Index

 o clickedCell(int, int, JGrid2)
called when user clicked in a cell.
 o clickedColumn(int, JGrid2)
called when user clicked on column header.
 o clickedRow(int, JGrid2)
called when user clicked on a margin cell.

Methods

 o clickedCell
public abstract void clickedCell(int row,
                                 int column,
                                 JGrid2 grid)
called when user clicked in a cell.

Parameters:
row - Row number the mouse clicked on
column - Column number the mouse clicked on
grid - JGrid is the grid object
 o clickedColumn
public abstract void clickedColumn(int column,
                                   JGrid2 grid)
called when user clicked on column header.

Parameters:
column - Column number the mouse clicked on
grid - JGrid is the grid object
 o clickedRow
public abstract void clickedRow(int row,
                                JGrid2 grid)
called when user clicked on a margin cell.

Parameters:
row - int
grid - JGrid is the grid object

All Packages  Class Hierarchy  This Package  Previous  Next  Index