Interface HasRowEditorExitHandlers
- All Superinterfaces:
 HasHandlers
- All Known Implementing Classes:
 CalendarView,CubeGrid,DateGrid,EditTree,ListGrid,ListPalette,Menu,MenuPalette,PickListMenu,RecordEditor,SelectionTreeMenu,TableView,TreeGrid,TreePalette
- 
Method Summary
Modifier and TypeMethodDescriptionCallback fired when the user attempts to navigate away from the current edit row, or complete the current edit.Methods inherited from interface com.google.gwt.event.shared.HasHandlers
fireEvent 
- 
Method Details
- 
addRowEditorExitHandler
Callback fired when the user attempts to navigate away from the current edit row, or complete the current edit.Call
RowEditorExitEvent.cancel()from withinRowEditorExitHandler.onRowEditorExit(com.smartgwt.client.widgets.grid.events.RowEditorExitEvent)from this method to cancel the default behavior (Saving / cancelling the current edit / moving to the next edit cell).- Parameters:
 handler- the rowEditorExit handler- Returns:
 HandlerRegistrationused to remove this handler
 
 -