IListDataSource.statuschanged event

Occurs when the status of the IListDataSource changes.
Syntax
function handler(eventInfo) { /* Your code */ } // addEventListener syntax iListDataSource.addEventListener("statuschanged", handler); iListDataSource.removeEventListener("statuschanged", handler);
Event information
| Synchronous | No |
|---|---|
| Bubbles | Yes |
| Cancelable | Yes |
Event handler parameters
- eventInfo
-
Type: CustomEvent
An object that contains information about the event. The detail property of this object contains the following sub-properties:
- status
-
One of the values defined by the DataSourceStatus enumeration.
Requirements
|
Minimum WinJS version |
WinJS 3.0 |
|---|---|
|
Namespace |
WinJS.UI |
See also
Show: