Skip to main content
All docs
V24.2

ASPxClientGridViewBatchEditApi.SelectCell(rowVisibleIndex, columnIndex) Method

Selects a cell.

#Declaration

TypeScript
SelectCell(
    rowVisibleIndex: number,
    columnIndex: number
): void

#Parameters

Name Type Description
rowVisibleIndex number

The visible index of the row.

columnIndex number

The column’s index.

#Remarks

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

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