HieTreeView.NodeDblClick

Syntax

NodeDblClick: function (sender, args);

Parameters

sender. Event source.

args. Event information.

Description

The NodeDblClick event is fired on double clicking a tree node.

Example

To execute the example, create a service for working with time series, create a component that will show hierarchy of time series database named maTree (see MetaAttributeTree Constructor), and add the following code in the <SCRIPT> tag:

	maTree.NodeDblClick.add(function(sender, args){console.log("Key: " + args.SeriesData[0].Fact.k)})

After executing the example double click on the tree element displays the key of the selected data series in the browser console.

See also:

HieTreeView