Interface HasIconClickHandlers
- All Superinterfaces:
HasHandlers
- All Known Implementing Classes:
AutoFitTextAreaItem
,BlurbItem
,BooleanItem
,ButtonItem
,CancelItem
,CanvasItem
,CheckboxItem
,ColorItem
,ColorPickerItem
,ComboBoxItem
,DateItem
,DateRangeItem
,DateTimeItem
,DoubleItem
,FileItem
,FloatItem
,FormItem
,HeaderItem
,HiddenItem
,IntegerItem
,IPickTreeItem
,LinkItem
,MiniDateRangeItem
,MultiComboBoxItem
,MultiFileItem
,MultiPickerItem
,NativeCheckboxItem
,PasswordItem
,PickTreeItem
,PresetCriteriaItem
,PresetDateRangeItem
,RadioGroupItem
,RelativeDateItem
,ResetItem
,RichTextItem
,RowSpacerItem
,SavedSearchItem
,SectionItem
,SelectItem
,SelectOtherItem
,SetFilterItem
,ShuttleItem
,SliderItem
,SpacerItem
,SpinnerItem
,StaticTextItem
,SubmitItem
,TextAreaItem
,TextItem
,TimeItem
,ToggleItem
,ToolbarItem
,UploadItem
,ViewFileItem
-
Method Summary
Modifier and TypeMethodDescriptionaddIconClickHandler
(IconClickHandler handler) Notification method called when the user clicks on a form item icon.Methods inherited from interface com.google.gwt.event.shared.HasHandlers
fireEvent
-
Method Details
-
addIconClickHandler
Notification method called when the user clicks on a form item icon.The icon's
FormItemIcon.formItemClick()
method if any is called first. Then, if the clicked icon is thepicker icon
, theFormItem.pickerIconClick()
method is called. Then, this method is called.This event may be cancelled to suppress the
FormItem.click()
handler from also firing in response to the user interaction.- Parameters:
handler
- the iconClick handler- Returns:
HandlerRegistration
used to remove this handler
-