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.ControlsAssembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntaxpublic string OnClientContextMenu { get; set; }
Public Property OnClientContextMenu As String
Get
Set
public:
property String^ OnClientContextMenu {
String^ get ();
void set (String^ value);
}
member OnClientContextMenu : string with 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.
Examplesfunction onContextMenu(sender, args)
{
var item = args.get_item();
}
See Also