Spread for ASP.NET 8.0 Product Documentation
onContextMenuClosed

Occurs when the menu is closed.

Syntax

[Inline HTML]

<ELEMENT onContextMenuClosed = "handler" ...>

[Event Property]

FpSpread1.onContextMenuClosed = handler

[Named Script]

<SCRIPT FOR=FpSpread1 EVENT=onContextMenuClosed>

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 closes.

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("ContextMenuClosed", mclose, false);
            } else {
                // Other versions of IE and IE9 quirks mode (no doctype set)
                spread1.onContextMenuClosed = mclose;
            }
        } else {
            // Firefox
            spread1.addEventListener("ContextMenuClosed", mclose, false);
        }
    }

function mclose() {       
            alert("closed");      
    }

See Also

 

 


Copyright © GrapeCity, inc. All rights reserved.

Support Options | Documentation Feedback