- Deprecated:
Since Description 5.0.0Use DataProvider instead.
Constructor
new EventSource()
- Deprecated:
Since Description 5.0.0Use DataProvider instead.
Methods
-
handleEvent(eventType, event) : {boolean}
-
Handle the event
Parameters:
Name Type Description eventTypestring event type eventObject event Returns:
Returns false if event is cancelled- Type
- boolean
-
Init()
-
Initializes the instance.
-
off(eventType, eventHandler) : {void}
-
Detach an event handler.
Application can call this if it no longer wants to be notified of an event that it has attached an handler to using the
onmethod.Parameters:
Name Type Description eventTypestring eventType eventHandlerfunction(Object) event handler function Returns:
- Type
- void
-
on(eventType, eventHandler) : {void}
-
Attach an event handler.
Application can call this if it wants to be notified of an event. It can call the
offmethod to detach the handler when it no longer wants to be notified.Parameters:
Name Type Description eventTypestring eventType eventHandlerfunction(Object) event handler function Returns:
- Type
- void