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

ASPxNavBar.ItemCommand Event

Fires when a control contained within a templated item raises the Command event.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v20.2.dll

NuGet Package: DevExpress.Web

Declaration

public event NavBarItemCommandEventHandler ItemCommand

Event Data

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

Property Description
CommandArgument Gets the argument for the command. Inherited from CommandEventArgs.
CommandName Gets the name of the command. Inherited from CommandEventArgs.
CommandSource Gets an object representing the control which forced a postback.
Item Gets an item object related to the event.

Remarks

The navbar control allows the contents of its items to be customized through defining templates. A template of an item can be specified by the ASPxNavBar.ItemTemplate, NavBarGroup.ItemTemplate or NavBarItem.Template property. A template is a set of HTML elements and controls which constitute a layout for a particular item.

The ItemCommand event is fired when any control contained within a templated item raises the Command event. The ItemCommand event is commonly used when a specific command name is associated with a button control. This allows you to create multiple button controls within different templated items and programmatically determine which button control is clicked.

Write an ItemCommand event handler to perform specific actions each time the Command event is raised by any control contained within any templated item. The ItemCommand event provides a parameter of the NavBarItemCommandEventArgs type.

See Also