Spread for ASP.NET 7.0 Product Documentation
onContextMenuOpening
See Also Support Options
Spread for ASP.NET 7.0 Product Documentation > Client-Side Scripting Reference > Scripting Members > Events > onContextMenuOpening

Glossary Item Box

Occurs when the menu is being shown.

Syntax

[Inline HTML]

<ELEMENT onContextMenuOpening = "handler" ...>

[Event Property]

FpSpread1.onContextMenuOpening = handler

[Named Script]

<SCRIPT FOR=FpSpread1 EVENT=onContextMenuOpening>

Arguments

event.SelectedItem
LI element that represents a menu item
event.ContextMenu
Menu type that caused the event to occur
event.spread
Spread that raises the event

Return Type

None

Remarks

This event is triggered when the menu is being opened.

Example

This example JavaScript code maps the event for the Spread on the client side.

JavaScript Copy Code

window.onload = function () {
        var spread1 = document.getElementById("<%=FpSpread1.ClientID %>");
        if (document.all) {
            // IE
            if (spread1.addEventListener) {
                // IE9
                spread1.addEventListener("ContextMenuOpening", mopening, false);
            } else {
                // Other versions of IE and IE9 quirks mode (no doctype set)
                spread1.onContextMenuOpening = mopening;
            }
        } else {
            // Firefox
            spread1.addEventListener("ContextMenuOpening", mopening, false);
        }
    }

function mopening() {       
            alert("opening");      
    }

See Also

© 2002-2014 ComponentOne, a division of GrapeCity. All Rights Reserved.