Uses of Interface
com.google.gwt.widgetideas.table.client.SourceTableSelectionEvents

Packages that use SourceTableSelectionEvents
com.google.gwt.widgetideas.table.client   
 

Uses of SourceTableSelectionEvents in com.google.gwt.widgetideas.table.client
 

Classes in com.google.gwt.widgetideas.table.client that implement SourceTableSelectionEvents
 class FixedWidthGrid
          A variation of the Grid that resizes columns using a fixed table width.
 class SelectionGrid
          A variation of the Grid that supports row or cell hovering and row selection.
 class SortableGrid
          A variation of the Grid that supports many more options such as lazy row and column creation, row movement, hovering, row selection, and better column resizing.
 

Methods in com.google.gwt.widgetideas.table.client with parameters of type SourceTableSelectionEvents
 void TableSelectionListenerCollection.fireAllRowsDeselected(SourceTableSelectionEvents sender)
          Fired when all rows are deselected.
 void TableSelectionListenerCollection.fireCellHover(SourceTableSelectionEvents sender, int row, int cell)
          Fired when a cell is hovered.
 void TableSelectionListenerCollection.fireCellUnhover(SourceTableSelectionEvents sender, int row, int cell)
          Fired when a cell is unhovered.
 void TableSelectionListenerCollection.fireRowDeselected(SourceTableSelectionEvents sender, int row)
          Fired when a single row is deselected.
 void TableSelectionListenerCollection.fireRowHover(SourceTableSelectionEvents sender, int row)
          Fired when a row is hovered.
 void TableSelectionListenerCollection.fireRowsSelected(SourceTableSelectionEvents sender, int firstRow, int numRows)
          Fired when one or more rows are selected.
 void TableSelectionListenerCollection.fireRowUnhover(SourceTableSelectionEvents sender, int row)
          Fired when a row is unhovered.
 void TableSelectionListener.onAllRowsDeselected(SourceTableSelectionEvents sender)
          Fired when all rows are deselected.
 void TableSelectionListener.onCellHover(SourceTableSelectionEvents sender, int row, int cell)
          Fired when a cell is hovered.
 void TableSelectionListener.onCellUnhover(SourceTableSelectionEvents sender, int row, int cell)
          Fired when a cell is unhovered.
 void TableSelectionListener.onRowDeselected(SourceTableSelectionEvents sender, int row)
          Fired when a single row is deselected.
 void TableSelectionListener.onRowHover(SourceTableSelectionEvents sender, int row)
          Fired when a row is hovered.
 void TableSelectionListener.onRowsSelected(SourceTableSelectionEvents sender, int firstRow, int numRows)
          Fired when one or more rows are selected.
 void TableSelectionListener.onRowUnhover(SourceTableSelectionEvents sender, int row)
          Fired when a row is unhovered.