Skip to main content
Tab

TitleIndexItemCommandEventArgs.CommandSource Property

Gets an object representing a control which forced a postback.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public object CommandSource { get; }

Property Value

Type Description
Object

A Object representing a control which forced a postback.

Remarks

The ASPxTitleIndex.ItemCommand event fires when a control residing on an item’s template raises the Command event. For instance this may occur when a Button control residing on an ASPxTitleIndex‘s item template (ASPxTitleIndex.ItemTemplate) is clicked. In this instance, the CommandSource property returns the clicked Button control. This can be used to identify the control that forced a postback, if there are several controls residing on a template.

Note that you must specify an item’s template to display controls within it. refer to the ASPxTitleIndex.ItemTemplate property description for more details.

See Also