Interface HasEditorExitHandlers
- 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 TypeMethodDescriptionaddEditorExitHandler(EditorExitHandler handler) Callback fired when the user attempts to navigate away from the current edit cell, or complete the current edit.
CallEditorExitEvent.cancel()from withinEditorExitHandler.onEditorExit(com.smartgwt.client.widgets.grid.events.EditorExitEvent)from this method to cancel the default behavior (Saving / cancelling the current edit / moving to the next edit cell)Methods inherited from interface com.google.gwt.event.shared.HasHandlers
fireEvent 
- 
Method Details
- 
addEditorExitHandler
Callback fired when the user attempts to navigate away from the current edit cell, or complete the current edit.
CallEditorExitEvent.cancel()from withinEditorExitHandler.onEditorExit(com.smartgwt.client.widgets.grid.events.EditorExitEvent)from this method to cancel the default behavior (Saving / cancelling the current edit / moving to the next edit cell)- Parameters:
 handler- the editorExit handler- Returns:
 HandlerRegistrationused to remove this handler
 
 -