Skip to main content
All docs
V23.2

ASPxClientGridViewBatchEditApi.SelectCellByKey(key, columnIndex) Method

Selects a cell with the specified key.

Declaration

SelectCellByKey(
    key: any,
    columnIndex: number
): void

Parameters

Name Type Description
key any

The key of the row.

columnIndex number

The index of the column.

Remarks

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

<dx:ASPxGridView ID="GridView" ClientInstanceName="clientGrid" ...>
      ...
</dx:ASPxGridView>
clientGrid.batchEditApi.SelectCellByKey(row_key,4);
See Also