Raised when a drag operation on an item is finished.
Namespace: MindFusion.Common.UI
File: ListContainer.js
SyntaxJavaScript
Copy Code
|
|---|
EventDispatcher itemDragEnd |
Event DataThe 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.
ExampleThe following code creates a new ListView and handles its itemDragEnd event. The ListView class derives from ListContainer:
JavaScript
Copy Code
|
|---|
// create the ListView control //attach event handler to the dragDrop event
|
See Also