Deprecated:
| Since | Description |
|---|---|
5.0.0 |
Use DataProvider instead. |
Constructor
(abstract) new DataSource(data)
Parameters:
| Name | Type | Description |
|---|---|---|
data |
Object | data supported by the components |
Deprecated:
| Since | Description |
|---|---|
5.0.0 |
Use DataProvider instead. |
Methods
-
getCapability(feature) : {string|null}
-
Determines whether this DataSource supports the specified feature.
Parameters:
Name Type Description featurestring the feature in which its capabilities is inquired. Returns:
the capability of the specified feature. Returns null if the feature is not recognized.- Type
- string | null
-
handleEvent(eventType, event) : {boolean}
-
Handle the event
Parameters:
Name Type Description eventTypestring event type eventObject event - Inherited From:
Returns:
Returns false if event is cancelled- Type
- boolean
-
Init() : {undefined}
-
Initializes the instance.
Returns:
- Type
- undefined
-
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 - Inherited From:
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 - Inherited From:
Returns:
- Type
- void