Version

NodeUnhovered Property

This event is fired, after a tree node is unhovered with the mouse.
Syntax
'Declaration
 
Public Property NodeUnhovered As String
public string NodeUnhovered {get; set;}
Example
WebDataTree1.ClientEvents.NodeUnhovered = "WebDataTree_NodeUnhovered"
WebDataTree1.ClientEvents.NodeUnhovered = "WebDataTree_NodeUnhovered";
// The client event 'NodeUnhovered' takes two parameters sender and e
// sender  is the object which is raising the event
// e is the DataTreeNodeEventArgs
//Fires only when EnableHotTracking property is set to True on the server
function WebDataTree_NodeUnhovered(sender, e) {

    //Gets the node object that has mouse out of it
    var node = e.getNode();

    //Gets the text of the node
    var nodeText = node.get_text();

    alert("Mouse is out of the node '" + nodeText + "'!");
    
}
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also