Click or drag to resize
KaxListBoxOnClientContextMenu Property
Gets or sets a value indicating the client-side event handler that is called before the browser context panel shows (after right-clicking an item).

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 OnClientContextMenu { get; set; }

Property Value

Type: String
Remarks
Use theOnClientContextMenu property to specify a JavaScript function that will be executed before the context menu shows after right clicking an item.
Examples
function onContextMenu(sender, args)
{
   var item = args.get_item();
}
See Also