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

    Deselects a cell.

    Declaration

    UnselectCellByKey(
        key: any,
        columnIndex: number
    ): void

    Parameters

    Name Type Description
    key any

    The row key.

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