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

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

public interface HasEditorEnterHandlers
extends HasHandlers


Method Summary
 HandlerRegistration addEditorEnterHandler(EditorEnterHandler handler)
          Callback fired when the user first starts editing a cell.
 
Methods inherited from interface com.google.gwt.event.shared.HasHandlers
fireEvent
 

Method Detail

addEditorEnterHandler

HandlerRegistration addEditorEnterHandler(EditorEnterHandler handler)
Callback fired when the user first starts editing a cell.

This callback is typically used to establish dynamic default values via ListGrid.setEditValue(int, int, java.lang.String) or ListGrid.setEditValues(int, java.util.Map).

Parameters:
handler - the editorEnter handler
Returns:
HandlerRegistration used to remove this handler