Skip to main content
All docs
V25.1
  • ASPxClientGridViewBatchEditApi.SelectCell(rowVisibleIndex, columnIndex) Method

    Selects a cell.

    Declaration

    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