public interface HasEditFailedHandlers
extends com.google.gwt.event.shared.HasHandlers
Modifier and Type | Method and Description |
---|---|
com.google.gwt.event.shared.HandlerRegistration |
addEditFailedHandler(EditFailedHandler handler)
Called when an attempt to save inline edits fails, due to a validation error or other server error.
|
com.google.gwt.event.shared.HandlerRegistration addEditFailedHandler(EditFailedHandler handler)
The default
implementation of editFailed does nothing for normal validation errors, which are displayed before editFailed() is
called. For any other errors, the default implementation will call RPCManager.handleError()
, which by default will result in a warning
dialog.
handler
- the editFailed handlerHandlerRegistration
used to remove this handler