com.vaadin.flow.component.grid.editor.
Class EditorImpl<T>
- java.lang.Object
-
- com.vaadin.flow.component.grid.Grid.AbstractGridExtension<T>
-
- com.vaadin.flow.component.grid.editor.EditorImpl<T>
-
Type Parameters:
T
- the grid bean typeAll Implemented Interfaces:
Editor<T>, DataGenerator<T>, Serializable
public class EditorImpl<T> extends Grid.AbstractGridExtension<T> implements Editor<T>
Implementation of
Editor
interface.See Also:
-
-
Constructor Summary
Constructors Constructor and Description EditorImpl(Grid<T> grid, PropertySet<T> propertySet)
-
Method Summary
All Methods Modifier and Type Method and Description Registration
addCancelListener(EditorCancelListener<T> listener)
Adds an editor cancel
listener
.Registration
addCloseListener(EditorCloseListener<T> listener)
Adds an editor close
listener
.Registration
addOpenListener(EditorOpenListener<T> listener)
Adds an editor open
listener
.Registration
addSaveListener(EditorSaveListener<T> listener)
Adds an editor save
listener
.void
cancel()
Close the editor discarding any unsaved changes.
void
editItem(T item)
Opens the editor interface for the provided item.
void
generateData(T item, elemental.json.JsonObject jsonObject)
Adds custom data for the given item to its serialized
JsonObject
representation.Binder<T>
getBinder()
Returns the underlying Binder from Editor.
Grid<T>
getGrid()
Gets the Grid this extension extends.
T
getItem()
Gets the current item being edited, if any.
boolean
isBuffered()
Returns whether Editor is buffered or not.
boolean
isOpen()
Returns whether Editor is open or not.
boolean
save()
Saves any changes from the Editor fields to the edited bean.
Editor<T>
setBinder(Binder<T> binder)
Sets the underlying Binder to this Editor.
Editor<T>
setBuffered(boolean buffered)
Sets the Editor buffered mode.
-
Methods inherited from class com.vaadin.flow.component.grid.Grid.AbstractGridExtension
extend, refresh, remove
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.vaadin.flow.data.provider.DataGenerator
destroyAllData, destroyData, refreshData
-
-
-
-
Constructor Detail
-
EditorImpl
public EditorImpl(Grid<T> grid, PropertySet<T> propertySet)
-
-
Method Detail
-
setBinder
public Editor<T> setBinder(Binder<T> binder)
Description copied from interface:
Editor
Sets the underlying Binder to this Editor.
-
getBinder
public Binder<T> getBinder()
Description copied from interface:
Editor
Returns the underlying Binder from Editor.
-
setBuffered
public Editor<T> setBuffered(boolean buffered)
Description copied from interface:
Editor
Sets the Editor buffered mode. When the editor is in buffered mode, edits are only committed when the user clicks the save button. In unbuffered mode valid changes are automatically committed.
Specified by:
setBuffered
in interfaceEditor<T>
Parameters:
buffered
-true
if editor should be buffered;false
if notReturns:
this editor
-
isBuffered
public boolean isBuffered()
Description copied from interface:
Editor
Returns whether Editor is buffered or not.
Specified by:
isBuffered
in interfaceEditor<T>
Returns:
true
if editor is buffered;false
if notSee Also:
-
isOpen
public boolean isOpen()
Description copied from interface:
Editor
Returns whether Editor is open or not.
-
save
public boolean save()
Description copied from interface:
Editor
Saves any changes from the Editor fields to the edited bean.
-
cancel
public void cancel()
Description copied from interface:
Editor
Close the editor discarding any unsaved changes.
-
editItem
public void editItem(T item)
Description copied from interface:
Editor
Opens the editor interface for the provided item.
-
getItem
public T getItem()
Description copied from interface:
Editor
Gets the current item being edited, if any.
The item being edited is always
null
while the editor is closed. The item is notnull
duringEditor.save()
andEditor.cancel()
operations, but becomenull
as soon as the editor is closed.
-
getGrid
public Grid<T> getGrid()
Description copied from class:
Grid.AbstractGridExtension
Gets the Grid this extension extends.
-
generateData
public void generateData(T item, elemental.json.JsonObject jsonObject)
Description copied from interface:
DataGenerator
Adds custom data for the given item to its serialized
JsonObject
representation. This JSON object will be sent to client-side DataProvider.Specified by:
generateData
in interfaceDataGenerator<T>
Parameters:
item
- the data item being serializedjsonObject
- the JSON object being sent to the client
-
addSaveListener
public Registration addSaveListener(EditorSaveListener<T> listener)
Description copied from interface:
Editor
Adds an editor save
listener
.Specified by:
addSaveListener
in interfaceEditor<T>
Parameters:
listener
- save listenerReturns:
a registration object for removing the listener
-
addCancelListener
public Registration addCancelListener(EditorCancelListener<T> listener)
Description copied from interface:
Editor
Adds an editor cancel
listener
.Specified by:
addCancelListener
in interfaceEditor<T>
Parameters:
listener
- cancel listenerReturns:
a registration object for removing the listener
-
addOpenListener
public Registration addOpenListener(EditorOpenListener<T> listener)
Description copied from interface:
Editor
Adds an editor open
listener
.Specified by:
addOpenListener
in interfaceEditor<T>
Parameters:
listener
- open listenerReturns:
a registration object for removing the listener
-
addCloseListener
public Registration addCloseListener(EditorCloseListener<T> listener)
Description copied from interface:
Editor
Adds an editor close
listener
. Close events are sent every time the editor is closed, no matter if it is due to a save or to a cancel operation.When a successful
Editor.save()
operation is performed, two listeners are triggered: save and close listeners. Likewise, when aEditor.cancel()
operation is performed, two listeners are triggered, cancel and close listeners.Specified by:
addCloseListener
in interfaceEditor<T>
Parameters:
listener
- close listenerReturns:
a registration object for removing the listener
-
-