Initializes a new instance of the ItemEventArgs class.
Namespace: MindFusion.Common.UI
File: EventArgs.js
JavaScript Copy Code |
---|
function ItemEventArgs (item, rawEventArgs) |
ListItem. The item, associated with the event.
Object. The Javascript event data.
The 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. |