ASPxClientVerticalGridBatchEditApi.UnselectCellByKey(key, rowIndex) Method
Deselects a cell with the specified key.
Declaration
UnselectCellByKey(
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:
UnselectCellByKey
- GetSelectedCells
- SelectCell(visibleIndex, rowIndex)
- SelectCellByKey(key, rowIndex)
- UnselectCell(visibleIndex, rowIndex)
<dx:ASPxVerticalGrid ID="VerticalGrid1" ClientInstanceName="clientVGrid" ...>
...
</dx:ASPxVerticalGrid>
clientVGrid.batchEditApi.UnselectCellByKey(rec_key,3);
See Also