com.smartgwt.client.widgets.grid.events
Interface HasEditorExitHandlers

All Superinterfaces:
HasHandlers
All Known Implementing Classes:
CubeGrid, ListGrid, ListGridField, ListGridSummaryField, Menu, TableView, TreeGrid, TreeGridField

public interface HasEditorExitHandlers
extends HasHandlers


Method Summary
 HandlerRegistration addEditorExitHandler(EditorExitHandler handler)
          Callback fired when the user attempts to navigate away from the current edit cell, or complete the current edit.
Call EditorExitEvent.cancel() from within EditorExitHandler.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 Detail

addEditorExitHandler

HandlerRegistration addEditorExitHandler(EditorExitHandler handler)
Callback fired when the user attempts to navigate away from the current edit cell, or complete the current edit.
Call EditorExitEvent.cancel() from within EditorExitHandler.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:
HandlerRegistration used to remove this handler