com.smartgwt.client.widgets.grid.events
Interface HasSelectionChangedHandlers

All Superinterfaces:
HasHandlers
All Known Implementing Classes:
ListGrid, Menu, TreeGrid

public interface HasSelectionChangedHandlers
extends HasHandlers


Method Summary
 HandlerRegistration addSelectionChangedHandler(SelectionChangedHandler handler)
          Called when (row-based) selection changes within this grid.
 
Methods inherited from interface com.google.gwt.event.shared.HasHandlers
fireEvent
 

Method Detail

addSelectionChangedHandler

HandlerRegistration addSelectionChangedHandler(SelectionChangedHandler handler)
Called when (row-based) selection changes within this grid. Note this method fires for each record for which selection is modified - so when a user clicks inside a grid this method will typically fire twice (once for the old record being deselected, and once for the new record being selected).

Parameters:
handler - the selectionChanged handler
Returns:
HandlerRegistration used to remove this handler