The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
ListView.onitemdragchanged event

Raised when the user is dragging an item from the ListView and the itemDataSource changes while the user is dragging.
Syntax
<div data-win-control="WinJS.UI.ListView" data-win-options="{onitemdragchanged : handler}"> </div>
function handler(eventInfo) { /* Your code */ } // addEventListener syntax listView.addEventListener("itemdragchanged", handler); listView.removeEventListener("itemdragchanged", handler);
Event information
| Synchronous | No |
|---|---|
| Bubbles | Yes |
| Cancelable | Yes |
Event handler parameters
- eventInfo
-
Type: CustomEvent
An object that contains info about the event. The detail property of this object contains additional info about the event.
Requirements
|
Minimum WinJS version |
WinJS 3.0 |
|---|---|
|
Namespace |
WinJS.UI |
See also
Show: