Interface SortHandler<T>
-
- Type Parameters:
T- The row type of the Grid. The row type is the POJO type from where the data is retrieved into the column cells.
- All Superinterfaces:
com.google.gwt.event.shared.EventHandler
public interface SortHandler<T> extends com.google.gwt.event.shared.EventHandlerHandler for a Grid sort event, called when the Grid needs its data source to provide data sorted in a specific manner.- Since:
- 7.4
- Author:
- Vaadin Ltd
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidsort(SortEvent<T> event)Handle sorting of the Grid.
-