Skip to main content
All docs
V24.2

ASPxClientGridViewBatchEditApi.SelectCellByKey(key, columnIndex) Method

Selects a cell with the specified key.

#Declaration

TypeScript
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