ASPxVerticalGrid.CustomButtonCallback Event
In This Article
Occurs when a custom command button has been clicked.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.2.dll
NuGet Package: DevExpress.Web
#Declaration
public event ASPxVerticalGridCustomButtonCallbackEventHandler CustomButtonCallback
#Event Data
The CustomButtonCallback event's data class is ASPxVerticalGridCustomButtonCallbackEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
Button |
Gets a value that identifies the clicked custom button.
Inherited from ASPx |
Visible |
Gets the index of a data item (row, card or record) that contains the custom button currently being clicked.
Inherited from ASPx |
#Remarks
Handle the CustomButtonCallback event to define an action for a custom button.
The event parameter’s ASPxGridCustomButtonCallbackEventArgs.ButtonID property allows you to identify the button currently being clicked.
See Also