Package com.vaadin.ui
Interface Grid.EditorListener
-
- All Superinterfaces:
Serializable
- Enclosing class:
- Grid
public static interface Grid.EditorListener extends Serializable
Interface for an editor event listener
-
-
Field Summary
Fields Modifier and Type Field Description static MethodEDITOR_CLOSE_METHODstatic MethodEDITOR_MOVE_METHODstatic MethodEDITOR_OPEN_METHOD
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voideditorClosed(Grid.EditorCloseEvent e)Called when an editor is closedvoideditorMoved(Grid.EditorMoveEvent e)Called when an editor is reopened without closing it firstvoideditorOpened(Grid.EditorOpenEvent e)Called when an editor is opened
-
-
-
Method Detail
-
editorOpened
void editorOpened(Grid.EditorOpenEvent e)
Called when an editor is opened- Parameters:
e- an editor open event object
-
editorMoved
void editorMoved(Grid.EditorMoveEvent e)
Called when an editor is reopened without closing it first- Parameters:
e- an editor move event object
-
editorClosed
void editorClosed(Grid.EditorCloseEvent e)
Called when an editor is closed- Parameters:
e- an editor close event object
-
-