public interface HasIconClickHandlers
extends com.google.gwt.event.shared.HasHandlers
Modifier and Type | Method and Description |
---|---|
com.google.gwt.event.shared.HandlerRegistration |
addIconClickHandler(IconClickHandler handler)
Notification method called when the user clicks on a form item icon.
|
com.google.gwt.event.shared.HandlerRegistration addIconClickHandler(IconClickHandler handler)
The icon's FormItemIcon.formItemClick()
method if any
is called first. Then, if the clicked icon is the picker icon
, the FormItem.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.
handler
- the iconClick handlerHandlerRegistration
used to remove this handler