Click or drag to resize
KaxTreeViewOnClientNodeClicking Property
The name of the JavaScript function that will be called upon click on a treenode. The function must accept a single parameter which is the instance of the node clicked. For example if you define OnClientClick="ProcessClientClick", you must define a javascript function defined in the following way (example):

function ProcessClientClick(node) { alert("You clicked on: " + node.Text); }

Namespace: Kettic.AspNet.Controls
Assembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax
public string OnClientNodeClicking { get; set; }

Property Value

Type: String
See Also