ASPxClientPivotGrid.CellClick Event
In This Article
Occurs when a cell is clicked.
#Declaration
TypeScript
CellClick: ASPxClientEvent<ASPxClientClickEventHandler<ASPxClientPivotGrid>>
#Event Data
The CellClick event's data class is ASPxClientClickEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
Column |
Gets a column field name. |
Column |
Gets the index of a column that owns the processed cell. |
Column |
Gets a column field value. |
Column |
Gets a column value type. |
Data |
Gets the index of the data field which corresponds to the clicked summary value. |
Html |
Provides access to the parameters associated with the ASPx |
Row |
Gets a row field name. |
Row |
Gets the index of a row that owns the processed cell. |
Row |
Gets a row field value. |
Row |
Gets a row value type. |
Value | Gets the processed cell’s value. |
#Remarks
To respond to double clicking a cell, handle the ASPxClientPivotGrid.CellDblClick client event.
See Also