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.events.
Interface SelectAllHandler<T>
-
Type Parameters:
T
- the type of the items in the GridAll Superinterfaces:
com.google.gwt.event.shared.EventHandler
public interface SelectAllHandler<T> extends com.google.gwt.event.shared.EventHandler
Handler for a Grid select all event, called when the Grid needs all rows in data source to be selected.
Since:
7.4
Author:
Vaadin Ltd
-
-
Method Summary
All Methods Modifier and Type Method Description void
onSelectAll​(SelectAllEvent<T> event)
Called when select all value in SelectionColumn header changes value.
-
-
-
Method Detail
-
onSelectAll
void onSelectAll​(SelectAllEvent<T> event)
Called when select all value in SelectionColumn header changes value.
Parameters:
event
- select all event telling that all rows should be selected
-
-