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.widgets.
Interface Grid.Editor.EventHandler<T>
-
Type Parameters:
T
- the row type of the gridAll Known Implementing Classes:
Enclosing class:
public static interface Grid.Editor.EventHandler<T>
A handler for events related to the Grid editor. Responsible for opening, moving or closing the editor based on the received event.
Since:
7.6
Author:
Vaadin Ltd
-
-
Method Summary
All Methods Modifier and Type Method and Description boolean
handleEvent(Grid.EditorDomEvent<T> event)
Handles editor-related events in an appropriate way.
-
-
-
Method Detail
-
handleEvent
boolean handleEvent(Grid.EditorDomEvent<T> event)
Handles editor-related events in an appropriate way. Opens, moves, or closes the editor based on the given event.
Parameters:
event
- the received eventReturns:
true if the event was handled and nothing else should be done, false otherwise
-
-