Interface ColumnResizeHandler<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 ColumnResizeHandler<T> extends com.google.gwt.event.shared.EventHandler
Handler for a Grid column resize event, called when the Grid's columns has been resized.- Since:
- 7.6
- Author:
- Vaadin Ltd
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onColumnResize(ColumnResizeEvent<T> event)
A column resize event, fired by Grid when the columns of the Grid have been resized.
-
-
-
Method Detail
-
onColumnResize
void onColumnResize(ColumnResizeEvent<T> event)
A column resize event, fired by Grid when the columns of the Grid have been resized.- Parameters:
event
- column resize event
-
-