Skip to main content
All docs
V25.1
  • ASPxClientVerticalGridBatchEditApi.SelectCellByKey(key, rowIndex) Method

    Selects a cell with the specified key.

    Declaration

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

    Parameters

    Name Type Description
    key any

    The record’s key.

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