Skip to main content

ASPxClientPivotGrid.CellClick Event

Occurs when a cell is clicked.

Declaration

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
ColumnFieldName Gets a column field name.
ColumnIndex Gets the index of a column that owns the processed cell.
ColumnValue Gets a column field value.
ColumnValueType Gets a column value type.
DataIndex Gets the index of the data field which corresponds to the clicked summary value.
HtmlEvent Provides access to the parameters associated with the ASPxClientPivotGrid.CellClick and ASPxClientPivotGrid.CellDblClick events.
RowFieldName Gets a row field name.
RowIndex Gets the index of a row that owns the processed cell.
RowValue Gets a row field value.
RowValueType 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