Interface HasCellSavedHandlers
- All Superinterfaces:
HasHandlers
- All Known Implementing Classes:
CalendarView
,CubeGrid
,DateGrid
,EditTree
,ListGrid
,ListGridField
,ListGridRemoveField
,ListGridSummaryField
,ListPalette
,Menu
,MenuPalette
,PickListMenu
,RecordEditor
,SelectionTreeMenu
,TableView
,TreeGrid
,TreeGridField
,TreePalette
-
Method Summary
Modifier and TypeMethodDescriptionaddCellSavedHandler
(CellSavedHandler handler) Fires after user edits have been successfully saved to the server, only for cells where the value was actually modified.Methods inherited from interface com.google.gwt.event.shared.HasHandlers
fireEvent
-
Method Details
-
addCellSavedHandler
Fires after user edits have been successfully saved to the server, only for cells where the value was actually modified.If you want immediate notification of a changes before changes has been saved to the server, implement
field.change()
orfield.changed()
instead.You can alternatively use
ListGridField.cellChanged()
to get notification only of saved changes for a specific field. If both a listGridField and the containing listGrid have a handler for this event, only the handler defined on the field is called.- Parameters:
handler
- the cellSaved handler- Returns:
HandlerRegistration
used to remove this handler
-