Initializes a new instance of the ItemEventArgs class.
Namespace: MindFusion.Common.UI
File: EventArgs.js
SyntaxJavaScript
Copy Code
|
|---|
function ItemEventArgs (item, rawEventArgs) |
ListItem. The item, associated with the event.
Object. The Javascript event data.
ExampleThe following code adds an event listener to the itemMouseDown event of a TreeView. The itemMouseDown event provides event data through ItemEventArgs object.
JavaScript
Copy Code
|
|---|
var ui = MindFusion.Common.UI; // Create a new TreeView control. tree.itemMouseDown.addEventListener(nodeMouseDown); // This is the handler function for tree itemMouseDown event. |
See Also