ASPxClientTreeListBatchEditApi.UnselectCell(nodeKey, columnIndex) Method
Deselects a cell.
Declaration
UnselectCell(
nodeKey: string,
columnIndex: number
): void
Parameters
Name | Type | Description |
---|---|---|
nodeKey | string | The node key. |
columnIndex | number | The column’s index. |
Remarks
Use the UnselectCell
, GetSelectedCells and SelectCell(nodeKey, columnIndex) methods to control the cell selection on the client side.
<dx:ASPxTreeList ID="TreeList" ClientInstanceName="clientTList" ...>
...
</dx:ASPxTreeList>
clientTList.batchEditApi.UnselectCell(node_key,5);
See Also