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

ASPxRibbon.CommandExecuted Event

Occurs after an end-user executes an action on a ribbon item.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.1.dll

Declaration

public event RibbonCommandExecutedEventHandler CommandExecuted

Event Data

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

Property Description
Item Gets an item object related to the event.
Parameter Gets an optional parameter that complements the processed command.

Remarks

Write a CommandExecuted event handler to perform specific actions on the server side after an end-user executes an action on a ribbon item (e.g., clicks a button, changes an editor value).

You can use the event parameter RibbonItemEventArgs.Item property to get the processed item. The RibbonCommandExecutedEventArgs.Parameter optional parameter provides additional information about the command being processed.

See Also