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
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class com.google.gwt.event.shared.GwtEvent
com.google.gwt.event.shared.GwtEvent.Type<H extends Object>
-
-
Constructor Summary
Constructors Constructor Description ColumnResizeEvent(Grid.Column<?,T> column)
Constructs a resize event for a grid column.
-
Method Summary
All Methods Modifier and Type Method 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()
Returns the associated handler type.
-
Methods inherited from class com.google.gwt.event.shared.GwtEvent
assertLive, getSource, isLive, kill, revive
-
-
-
-
Constructor Detail
-
ColumnResizeEvent
public ColumnResizeEvent(Grid.Column<?,T> column)
Constructs a resize event for a grid column.
Parameters:
column
- the updated column
-
-
Method Detail
-
getType
public static final com.google.gwt.event.shared.GwtEvent.Type<ColumnResizeHandler<?>> getType()
Returns the associated handler type.
Returns:
the handler type
-
getAssociatedType
public com.google.gwt.event.shared.GwtEvent.Type<ColumnResizeHandler<T>> getAssociatedType()
Specified by:
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
-
-