Interface HasChangedHandlers
- All Superinterfaces:
HasHandlers
- All Known Implementing Classes:
ListGridField
,ListGridRemoveField
,ListGridSummaryField
,TreeGridField
-
Method Summary
Modifier and TypeMethodDescriptionaddChangedHandler
(ChangedHandler handler) If this field is editable, anychanged
handler specified on the ListGridField will be passed onto the editors for this field.Methods inherited from interface com.google.gwt.event.shared.HasHandlers
fireEvent
-
Method Details
-
addChangedHandler
If this field is editable, anychanged
handler specified on the ListGridField will be passed onto the editors for this field. Note that ifcanToggle
is true, the user may change the value of a boolean field without going into edit mode by single clicking on the field. In this case theListGridField.change
andListGridField.changed
handlers will fire but theform
anditem
parameters will be null.- Parameters:
handler
- the changed handler- Returns:
HandlerRegistration
used to remove this handler
-