Skip to main content
All docs
V23.2

ASPxClientVerticalGridBatchEditApi.SelectCell(visibleIndex, rowIndex) Method

Selects a cell.

Declaration

SelectCell(
    visibleIndex: number,
    rowIndex: number
): void

Parameters

Name Type Description
visibleIndex number

The visible index of the record.

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.SelectCell(4,3);
See Also