We use cookies to serve our customers and website visitors in the best possible way. Cookies are used for the proper functioning of the website and for improving the user experience, monitoring visitor traffic and marketing purposes. By continuing to browse the site, you agree to our use of cookies. You can read more about cookies here.
com.vaadin.client.widget.grid.selection.
Interface HasSelectionHandlers<T>
-
All Known Implementing Classes:
public interface HasSelectionHandlers<T>
Marker interface for widgets that fires selection events.
Since:
7.4
Author:
Vaadin Ltd
-
-
Method Summary
All Methods Modifier and Type Method Description com.google.gwt.event.shared.HandlerRegistration
addSelectionHandler​(SelectionHandler<T> handler)
Register a selection change handler.
-
-
-
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
- aSelectionHandler
Returns:
a handler registration object, which can be used to remove the handler.
-
-