Search
ListContainer.itemDrag Event
See Also
 






Raised when an item is dragged.

Namespace: MindFusion.Common.UI
File: ListContainer.js

 Syntax

JavaScript  Copy Code

EventDispatcher itemDrag

 Event Data

The event handler method receives the following arguments:
sender
A ListItem instance, which is the source of the event. This object will be passed to the handler function as the first argument.
args
An InteractionEventArgs instance, which contains event data. This object will be passed to the handler function as the second argument.

 Example

The following code handles the itemDrag event of a ListView object. The ListView class derives from ListContainer.

JavaScript  Copy Code

var draggedNode = null;

// create the ListView control
nodeList = new ui.ListView(document.getElementById("nodeList"));
nodeList.itemDrag.addEventListener(nodeDrag);


function nodeDrag(sender, args)
{
 draggedNode = sender;
}

 See Also