Interface HasSelectionHandlers<T>

  • Type Parameters:
    T - the type of the items in the Grid
    All Known Implementing Classes:
    Grid, TreeGrid

    public interface HasSelectionHandlers<T>
    Marker interface for widgets that fires selection events.
    Since:
    7.4
    Author:
    Vaadin Ltd
    • Method Detail

      • addSelectionHandler

        com.google.gwt.event.shared.HandlerRegistration addSelectionHandler​(SelectionHandler<T> handler)
        Register a selection change handler.

        This handler is called whenever a SelectionModel detects a change in selection state.

        Parameters:
        handler - a SelectionHandler
        Returns:
        a handler registration object, which can be used to remove the handler.