Skip to main content
A newer version of this page is available. .

ASPxClientPivotGrid.PopupMenuItemClick Event

Occurs when a custom menu item has been clicked.

Declaration

PopupMenuItemClick: ASPxClientEvent<ASPxClientPivotMenuItemClickEventHandler<ASPxClientPivotGrid>>

Event Data

The PopupMenuItemClick event's data class is ASPxClientPivotMenuItemClickEventArgs. The following properties provide information specific to this event:

Property Description
Area
FieldID Gets the field’s unique indentifier.
FieldValueIndex Gets the index of the field value for which the popup menu has been invoked.
MenuItemName Gets the name of the menu item currently being clicked.
MenuType Gets the context menu’s type.

Remarks

Handle the PopupMenuItemClick event to define an action for a custom menu item. The clicked menu item is identified by its name via the ASPxClientPivotMenuItemClickEventArgs.MenuItemName property. The popup menu’s type is returned by the ASPxClientPivotMenuItemClickEventArgs.MenuType property.

To obtain the field value for which the popup menu has been invoked, do the following:

To create custom menu items, handle the ASPxPivotGrid.PopupMenuCreated event. To hide default menu items, handle the ASPxPivotGrid.AddPopupMenuItem event.

See Also