Skip to main content
All docs
V24.1

ASPxClientVerticalGridBatchEditApi.UnselectCellByKey(key, rowIndex) Method

Deselects a cell with the specified key.

Declaration

UnselectCellByKey(
    key: any,
    rowIndex: number
): void

Parameters

Name Type Description
key any

The record’s key.

rowIndex number

The index of the row.

Remarks

Use the following methods to control the cell selection on the client side:

<dx:ASPxVerticalGrid ID="VerticalGrid1" ClientInstanceName="clientVGrid" ...>
      ...
</dx:ASPxVerticalGrid>
clientVGrid.batchEditApi.UnselectCellByKey(rec_key,3);
See Also