ASPxClientVerticalGridBatchEditApi.UnselectCell(visibleIndex, rowIndex) Method
Deselects a cell.
Declaration
UnselectCell(
visibleIndex: number,
rowIndex: number
): void
Parameters
| Name | Type | Description |
|---|---|---|
| visibleIndex | number | The visible index of the record. |
| rowIndex | number | The index of the row. |
Remarks
Use the following methods to control the cell selection on the client side:
UnselectCell- GetSelectedCells
- SelectCell(visibleIndex, rowIndex)
- SelectCellByKey(key, rowIndex)
- UnselectCellByKey(key, rowIndex)
<dx:ASPxVerticalGrid ID="VerticalGrid1" ClientInstanceName="clientVGrid" ...>
...
</dx:ASPxVerticalGrid>
clientVGrid.batchEditApi.UnselectCell(2,3);
See Also