com.smartgwt.client.widgets.form.fields.events
Interface HasEditorEnterHandlers

All Superinterfaces:
HasHandlers
All Known Implementing Classes:
AutoFitTextAreaItem, BlurbItem, BooleanItem, ButtonItem, CancelItem, CanvasItem, CheckboxItem, ColorPickerItem, ComboBoxItem, DateItem, DateRangeItem, DateTimeItem, FileItem, FloatItem, FormItem, HeaderItem, HiddenItem, IntegerItem, IPickTreeItem, LinkItem, MiniDateRangeItem, MultiComboBoxItem, MultiFileItem, NativeCheckboxItem, PasswordItem, PickTreeItem, RadioGroupItem, RelativeDateItem, ResetItem, RichTextItem, RowSpacerItem, SectionItem, SelectItem, SelectOtherItem, SliderItem, SpacerItem, SpinnerItem, StaticTextItem, SubmitItem, TextAreaItem, TextItem, TimeItem, ToolbarItem, UploadItem, ViewFileItem

public interface HasEditorEnterHandlers
extends HasHandlers


Method Summary
 HandlerRegistration addEditorEnterHandler(EditorEnterHandler handler)
          Notification method fired when the user enters this formItem.
 
Methods inherited from interface com.google.gwt.event.shared.HasHandlers
fireEvent
 

Method Detail

addEditorEnterHandler

HandlerRegistration addEditorEnterHandler(EditorEnterHandler handler)
Notification method fired when the user enters this formItem. Differs from FormItem.focus in that while focus and blur may fire multiple as the user navigates sub elements of an item (such as interacting with a pick list), editorEnter will typically fire once when the user starts to edit this item as a whole, and once when the user moves onto a different item or component

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