Search
ItemEventArgs.item Property
See Also
 






Gets the item, associated with the event.

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

 Syntax

JavaScript  Copy Code

get item() {}

 Property Value

ListItem. The item, associated with the event.

 Example

The following code adds an event listener to the itemMouseDown event of a TreeView. The itemMouseDown event provides event data through an ItemEventArgs object.

JavaScript  Copy Code

var ui = MindFusion.Common.UI;

// Create a new TreeView control.
var tree = new ui.TreeView();

tree.itemMouseDown.addEventListener(nodeMouseDown);

// This is the handler function for tree itemMouseDown event.
// Modify the menu accordingly and show it on right mouse button click.
function nodeMouseDown(sender, args)
{
 var node = args.item;
 //if the right mouse button has been pressed
 if node.title == "Open File")
 {
   //do something
 }
}

 See Also