Package com.vaadin.ui
Class Grid.ColumnReorderEvent
- java.lang.Object
-
- java.util.EventObject
-
- com.vaadin.event.ConnectorEvent
-
- com.vaadin.ui.Component.Event
-
- com.vaadin.ui.Grid.ColumnReorderEvent
-
- All Implemented Interfaces:
Serializable
- Enclosing class:
- Grid
public static class Grid.ColumnReorderEvent extends Component.Event
An event that is fired when the columns are reordered.- Since:
- 7.5.0
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class java.util.EventObject
source
-
-
Constructor Summary
Constructors Constructor Description ColumnReorderEvent(Grid source, boolean userOriginated)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
isUserOriginated()
Returnstrue
if the column reorder was done by the user,false
if not and it was triggered by server side code.-
Methods inherited from class com.vaadin.ui.Component.Event
getComponent
-
Methods inherited from class com.vaadin.event.ConnectorEvent
getConnector
-
Methods inherited from class java.util.EventObject
getSource, toString
-
-
-
-
Constructor Detail
-
ColumnReorderEvent
public ColumnReorderEvent(Grid source, boolean userOriginated)
- Parameters:
source
- the grid where the event originated fromuserOriginated
-true
if event is a result of user interaction,false
if from API call
-
-