public interface HasChangeHandlers
extends com.google.gwt.event.shared.HasHandlers
Modifier and Type | Method and Description |
---|---|
com.google.gwt.event.shared.HandlerRegistration |
addChangeHandler(ChangeHandler handler)
If this field is editable, any
change handler
specified on the ListGridField will be passed onto the editors for this field. |
com.google.gwt.event.shared.HandlerRegistration addChangeHandler(ChangeHandler handler)
change
handler
specified on the ListGridField will be passed onto the editors for this field. Note that if canToggle
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 the ListGridField.change
and ListGridField.changed
handlers will fire but the
form
and item
parameters will be null.
handler
- the change handlerHandlerRegistration
used to remove this handler