Raised when a mouseenter event occurs in an item's element.
Namespace: MindFusion.Common.UI
File: ListContainer.js
SyntaxJavaScript
Copy Code
|
|---|
EventDispatcher itemMouseEnter |
Event DataThe event handler method receives the following arguments:
sender
A ListContainer instance, which is the source of the event. This object will be passed to the handler function as the first argument.
args
An ItemEventArgs instance, which contains event data. This object will be passed to the handler function as the second argument.
ExampleThe following code handles the itemMouseEnter event of a ListView object. The ListView class derives from ListContainer.
JavaScript
Copy Code
|
|---|
// create the ListView control
|
See Also