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.
Class ColumnResizeEvent<T>
- java.lang.Object
-
- com.google.web.bindery.event.shared.Event<H>
-
- com.google.gwt.event.shared.GwtEvent<ColumnResizeHandler<T>>
-
- com.vaadin.client.widget.grid.events.ColumnResizeEvent<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.
public class ColumnResizeEvent<T> extends com.google.gwt.event.shared.GwtEvent<ColumnResizeHandler<T>>
An event for notifying that the columns in the Grid have been resized.
Since:
7.6
Author:
Vaadin Ltd
-
-
Constructor Summary
Constructors Constructor and Description ColumnResizeEvent(Grid.Column<?,T> column)
-
Method Summary
All Methods Modifier and Type Method and Description protected void
dispatch(ColumnResizeHandler<T> handler)
com.google.gwt.event.shared.GwtEvent.Type<ColumnResizeHandler<T>>
getAssociatedType()
Grid.Column<?,T>
getColumn()
static com.google.gwt.event.shared.GwtEvent.Type<ColumnResizeHandler<?>>
getType()
-
Methods inherited from class com.google.gwt.event.shared.GwtEvent
assertLive, getSource, isLive, kill, revive
-
-
-
-
Constructor Detail
-
ColumnResizeEvent
public ColumnResizeEvent(Grid.Column<?,T> column)
Parameters:
column
-
-
-
Method Detail
-
getType
public static final com.google.gwt.event.shared.GwtEvent.Type<ColumnResizeHandler<?>> getType()
-
getAssociatedType
public com.google.gwt.event.shared.GwtEvent.Type<ColumnResizeHandler<T>> getAssociatedType()
Overrides:
getAssociatedType
in classcom.google.gwt.event.shared.GwtEvent<ColumnResizeHandler<T>>
-
dispatch
protected void dispatch(ColumnResizeHandler<T> handler)
Specified by:
dispatch
in classcom.google.gwt.event.shared.GwtEvent<ColumnResizeHandler<T>>
-
getColumn
public Grid.Column<?,T> getColumn()
Returns:
the column
-
-