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

ASPxCloudControl.ItemClick Event

Fires after an item has been clicked.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v18.2.dll

Declaration

public event CloudControlItemEventHandler ItemClick

Event Data

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

Property Description
Item Gets the cloud control item currently being processed.

Remarks

Write an ItemClick event handler to perform specific actions on the server side each time an item is clicked within the ASPxCloudControl. Note that this event fires immediately after the left mouse button is released. If the button is released when the mouse pointer is not over an item, the event doesn’t fire. You can use the event parameter’s property to identify the clicked item.

Note

The server ItemClick event is not generated for items whose CloudControlItem.NavigateUrl property’s value is defined.

See Also