API Reference 0.3.24dart_web_toolkit_eventHasBlurHandlers

HasBlurHandlers abstract class

A widget that implements this interface provides registration for {@link BlurHandler} instances.

abstract class HasBlurHandlers extends HasHandlers {
 /**
  * Adds a {@link BlurEvent} handler.
  *
  * @param handler the blur handler
  * @return {@link HandlerRegistration} used to remove this handler
  */
 HandlerRegistration addBlurHandler(BlurHandler handler);
}

Extends

HasHandlers > HasBlurHandlers

Subclasses

HasAllFocusHandlers

Methods

abstract HandlerRegistration addBlurHandler(BlurHandler handler) #

Adds a {@link BlurEvent} handler.

@param handler the blur handler @return {@link HandlerRegistration} used to remove this handler

abstract void fireEvent(DwtEvent event) #

inherited from HasHandlers

Fires the given event to the handlers listening to the event's type.

Any exceptions thrown by handlers will be bundled into a UmbrellaException and then re-thrown after all handlers have completed. An exception thrown by a handler will not prevent other handlers from executing.

@param event the event