Occurs when an item on the menu is clicked.
Syntax
[Inline HTML]
<ELEMENT onMenuItemClicked = "handler" ...>
[Event Property]
FpSpread1.onMenuItemClicked = handler
[Named Script]
<SCRIPT FOR=FpSpread1 EVENT=onMenuItemClicked>
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 user clicks on a menu item.
Example
This example JavaScript code maps the event for the Spread on the client side.
JavaScript | Copy Code |
---|---|
window.onload = function () { function mclick() { |