Interface IconClickHandler
- All Superinterfaces:
EventHandler
-
Method Summary
Modifier and TypeMethodDescriptionvoid
onIconClick
(IconClickEvent event) Notification method called when the user clicks on a form item icon.
-
Method Details
-
onIconClick
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:
event
- the event
-