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.ui.
Class Table.ColumnResizeEvent
java.lang.Object
java.util.EventObject
com.vaadin.ui.Component.Event
com.vaadin.ui.Table.ColumnResizeEvent
All Implemented Interfaces:
Enclosing class:
- extends Component.Event
public static class Table.ColumnResizeEvent
This event is fired when a column is resized. The event contains the columns property id which was fired, the previous width of the column and the width of the column after the resize.
See Also:
Field Summary | |
---|---|
static Method |
COLUMN_RESIZE_METHOD
|
Fields inherited from class java.util.EventObject |
---|
source |
Constructor Summary | |
---|---|
Table.ColumnResizeEvent(Component source,
Object propertyId,
int previous,
int current)
Constructor |
Method Summary | |
---|---|
int |
getCurrentWidth()
Get the width in pixels of the column after the resize event |
int |
getPreviousWidth()
Get the width in pixels of the column before the resize event |
Object |
getPropertyId()
Get the column property id of the column that was resized. |
Methods inherited from class com.vaadin.ui.Component.Event |
---|
getComponent |
Methods inherited from class java.util.EventObject |
---|
getSource, toString |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
COLUMN_RESIZE_METHOD
public static final Method COLUMN_RESIZE_METHOD
Constructor Detail |
---|
Table.ColumnResizeEvent
public Table.ColumnResizeEvent(Component source,
Object propertyId,
int previous,
int current)
- Parameters:
source
- The source of the eventpropertyId
- The columns property idprevious
- The width in pixels of the column before the resize eventcurrent
- The width in pixels of the column after the resize event
Constructor
Method Detail |
---|
getPropertyId
public Object getPropertyId()
- Returns:
- The column property id
Get the column property id of the column that was resized.
getPreviousWidth
public int getPreviousWidth()
- Returns:
- Width in pixels
Get the width in pixels of the column before the resize event
getCurrentWidth
public int getCurrentWidth()
- Returns:
- Width in pixels
Get the width in pixels of the column after the resize event