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

ASPxClientPivotGrid.CellDblClick Event

Occurs when a cell is double clicked.

Declaration

CellDblClick: ASPxClientEvent<ASPxClientClickEventHandler<ASPxClientPivotGrid>>

Event Data

The CellDblClick 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 clicking a cell, handle the ASPxClientPivotGrid.CellClick client event.

See Also