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

    Unselects a cell.

    Declaration

    UnselectCell(
        rowVisibleIndex: number,
        columnIndex: number
    ): void

    Parameters

    Name Type Description
    rowVisibleIndex number

    The visible index of the row.

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